From 2c161c5abfe991436f64159ca0459f5486deafeb Mon Sep 17 00:00:00 2001 From: Liam Monninger Date: Thu, 6 Jul 2023 15:48:44 -0700 Subject: [PATCH] updates to booklet to cover testing and example updates. --- book/book.toml | 8 +- book/book/404.html | 5 + book/book/Prologue.html | 11 + book/book/index.html | 11 + book/book/print.html | 240 ++++++++++++++---- book/book/searchindex.js | 2 +- book/book/searchindex.json | 2 +- book/book/week_1/Basic_move_syntax.html | 16 +- book/book/week_1/Debugging_basics.html | 171 ++++++++++--- book/book/week_1/Developer_setup.html | 8 + book/book/week_1/Inro_to_move.html | 8 + book/book/week_1/Module_and_build_system.html | 8 + .../week_1/Movement_standard_library.html | 8 + book/book/week_1/week_1.html | 8 + book/book/week_2/Design_patterns.html | 8 + book/book/week_2/Development_staging.html | 8 + book/book/week_2/Generics.html | 19 +- book/book/week_2/Intro_smart_contracts.html | 8 + book/book/week_2/Safety.html | 8 + book/book/week_2/Testing.html | 54 +++- book/book/week_2/week_2.html | 8 + book/book/week_3/Access_control.html | 8 + ...mon_blockchain_system_design_patterns.html | 8 + book/book/week_3/DeFi.html | 8 + book/book/week_3/Deploying_on_M1.html | 8 + book/book/week_3/Security.html | 8 + book/book/week_3/week_3.html | 8 + book/book/week_4/Guidelines.html | 8 + book/book/week_4/Next_steps.html | 8 + ...ject_requirements_and_recommendations.html | 8 + book/book/week_4/week_4.html | 8 + book/src/Prologue.md | 4 +- book/src/week_1/Basic_move_syntax.md | 8 +- book/src/week_1/Debugging_basics.md | 152 ++++++++--- book/src/week_2/Generics.md | 11 +- book/src/week_2/Testing.md | 51 +++- .../sources/resource_roulette.move | 6 +- 37 files changed, 791 insertions(+), 140 deletions(-) diff --git a/book/book.toml b/book/book.toml index d34134a..38f7e8a 100644 --- a/book/book.toml +++ b/book/book.toml @@ -1,5 +1,11 @@ [book] -authors = [] +authors = ["Liam Monninger", "Anan Poon", "Maggie Chudik"] language = "en" multilingual = false src = "src" + +[output.html] +mathjax-support = true +git-repository-url = "https://github.com/movemntdev/movement-hack" +edit-url-template = "https://github.com/movemntdev/movement-hack/edit/main/book/{path}" + diff --git a/book/book/404.html b/book/book/404.html index e7e4c57..d742827 100644 --- a/book/book/404.html +++ b/book/book/404.html @@ -31,6 +31,8 @@ + +
@@ -119,6 +121,9 @@

+ + +
diff --git a/book/book/Prologue.html b/book/book/Prologue.html index d297f08..e2f3cf2 100644 --- a/book/book/Prologue.html +++ b/book/book/Prologue.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
@@ -149,6 +157,9 @@

This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time.

By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages.

If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz.

+
+

This book has an accompanying GitHub repository here. You can also navigate to it by clicking the GitHub icon on any page.

+
diff --git a/book/book/index.html b/book/book/index.html index d297f08..e2f3cf2 100644 --- a/book/book/index.html +++ b/book/book/index.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
@@ -149,6 +157,9 @@

This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time.

By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages.

If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz.

+
+

This book has an accompanying GitHub repository here. You can also navigate to it by clicking the GitHub icon on any page.

+
diff --git a/book/book/print.html b/book/book/print.html index e02d228..3524b61 100644 --- a/book/book/print.html +++ b/book/book/print.html @@ -31,6 +31,8 @@ + +
@@ -119,6 +121,9 @@

+ + +
@@ -150,6 +155,9 @@

This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time.

By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages.

If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz.

+
+

This book has an accompanying GitHub repository here. You can also navigate to it by clicking the GitHub icon on any page.

+

Week 1: Introduction to Move and Movement

This week kicks off our exploration of the Move language and Movement ecosystem. We will begin by introducing Move, setting up an appropriate developer environment, and covering the basics of the Move language. Many of the topics concerning the move language will be revisited in greater depth during Week 2.

Introduction to Move and Movement

@@ -307,7 +315,8 @@

Primitives

}

Abilities

Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust.

@@ -338,14 +347,15 @@

Gen }

Resources, References, and Mutation

#![allow(unused)]
 fn main() {
 module collection::collection {
+    use std::signer;
 
     struct Item has store, drop {}
     struct Collection has key, store {
@@ -448,6 +458,13 @@ 

named_a

This section introduces a few basic smart contracts from this repository as a starting point for programming activites.

💻 HelloWorld

Is a very simple program for MoveVM. You can find it at examples/move/hello_world.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Byte strings
  • +
+
#![allow(unused)]
 fn main() {
 script {
@@ -472,82 +489,170 @@ 

💻 HelloWorld<
echo 48656c6c6f2c20776f726c6421 | xxd -r - p
 

💻 Fib

-

The obligatory Move program that computes the $nth$ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.

+

The obligatory Move program that computes the nth Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Byte strings
  • +
+
+

💻 DataStructures

+

From scratch implementation of a priority queue, a couple variations of a hash map, and a binary tree. This may be a useful reference point for building more challenging projects that require custom data strucures. You can find it at examples/move/data_structures.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Vectors
  • +
  • BCS
  • +
  • Move idioms
  • +
+

💻 ResourceRoulette

-

A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it examples/move/resource_roulette.

+

A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it at examples/move/resource_roulette.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Signer and address types
  • +
  • Borrows
  • +
  • Initialization
  • +
  • Move idioms
  • +
+
#![allow(unused)]
 fn main() {
 module resource_roulette::resource_roulette {
   use std::vector;
+  use std::signer;
+
+  const ENO_UNAUTHORIZED_ADDRESS : u64 = 0;
 
   // ResourceRoulette struct representing the contract state
-  struct ResourceRoulette {
+  struct ResourceRoulette has key {
     bids: vector<vector<address>>,
     owner: address,
+    state : u64
   }
 
-  struct RouletteWinnings {
+  struct RouletteWinnings has key {
     amount : u64
   }
 
   // Initialization function for the ResourceRoulette contract
-  public entry fun init(account: &signer) {
+  public fun init(account: &signer) {
+
+    assert!(signer::address_of(account) == @resource_roulette, ENO_UNAUTHORIZED_ADDRESS);
 
     let bids = vector::empty<vector<address>>();
     let i = 0;
-    while i < 32 {
-      vector::push_back(&mut bids, vector::empty<address>())
+    while (i < 32) {
+      vector::push_back(&mut bids, vector::empty<address>());
       i = i + 1;
     };
 
-    move_to<ResourceRoulette>(account, ResourceRoulette {
+    move_to(account, ResourceRoulette {
       bids,
       owner: @resource_roulette,
+      state : 17203943403948
     });
 
   }
 
+  // Initializes winnings for a signer
+  public fun init_winnings(account: &signer) {
+    move_to(account, RouletteWinnings {
+      amount: 0,
+    });
+  }
+
   // Bid function to allow signers to bid on a specific slot
-  public entry fun bid(sender: &signer, slot: u8) acquires ResourceRoulette {
-    let roulette = borrow_global_mut<ResourceRoulette>(@resource_roulette);
-    let bids_size = vector::length(&roulette.bids);
-    assert!(slot < bids_size, 99);
-    // assert bids size does not exceed 100
-    assert!(bids_size < 100, 0); 
-
-    let slot_bids = vector::borrow_mut(&mut roulette.bids, slot);
-    vector::push_back(&mut slot_bids, signer::address_of(sender));
+  public fun bid(account : &signer, slot: u8) acquires ResourceRoulette {
+
+    if (!exists<RouletteWinnings>(signer::address_of(account))) {
+      init_winnings(account);
+    };
+
+    let self = borrow_global_mut<ResourceRoulette>(@resource_roulette);
+    roll_state(self);
+    let bids_size = vector::length(&self.bids);
+    assert!(slot < (bids_size as u8), 99);
+    let slot_bids = vector::borrow_mut(&mut self.bids, (slot as u64));
+    vector::push_back(slot_bids, signer::address_of(account));
+
   }
 
-  public fun total_bid(): u64 acquires ResourceRoulette {
+  public fun total_bid() : u64 {
     // Make this more complex to support actual bidding
-    let roulette = borrow_global<ResourceRoulette>(@resource_roulette);
-    vector::length(&roulette.bids)
+    return 100
   }
 
-  // Roll function to select a pseudorandom slot and pay out all signers who selected that slot
-  public entry fun spin(sender: &signer) acquires ResourceRoulette {
-    let roulette = ResourceRoulette::borrow_global_mut();
-    assert!(singer::address_of(sender) == roulette.owner, 98);
+  // rolls state using xoroshiro prng
+  fun roll_state(self :&mut ResourceRoulette) {
+    let state = (self.state as u256);
+    let x = state;
+    let y = state >> 64;
+
+    let t = x ^ y;
+    state = ((x << 55) | (x >> 9)) + y + t;
+
+    y = y ^ x;
+    state = state + ((y << 14) | (y >> 50)) + x + t;
+    
+    state = state + t;
+    state = state % (2^128 - 1);
+    self.state = (state as u64);
 
-    let resource_vector_size = vector::length(&roulette.bids);
-    let winning_slot = (0x1000 % resource_vector_size) as u8;
+  }
 
-    let winners = vector::borrow(&roulette.bids, winning_slot);
+  public fun get_noise() : u64 {
+    1
+  }
 
-    let num_winners = vector::length(&winners_vec);
-    let balance_per_winner = total_bid() / num_winners as u64;
+  fun empty_bids(self : &mut ResourceRoulette){
 
-    let mut i = 0;
-    while i < num_winners {
-      let winner = vector::borrow(&winners_vec, i);
-      let mut winnings = borrow_global_mut<RouletteWinnings>(winner);
-      winnings.amount = winnings.amount + balance_per_winner;
+    // empty the slots
+    let bids = vector::empty<vector<address>>();
+    let i = 0;
+    while (i < 32) {
+      vector::push_back(&mut bids, vector::empty<address>());
       i = i + 1;
     };
+    self.bids = bids;
 
   }
 
+  // Roll function to select a pseudorandom slot and pay out all signers who selected that slot
+  public fun spin() acquires ResourceRoulette, RouletteWinnings {
+
+    let self = borrow_global_mut<ResourceRoulette>(@resource_roulette);
+
+    // get the winning slot
+    let bids_size = vector::length(&self.bids);
+    roll_state(self);
+    let winning_slot = (get_noise() * self.state % (bids_size as u64)) ;
+
+    // pay out the winners
+    let winners = vector::borrow(&self.bids, winning_slot);
+    let num_winners = vector::length(winners);
+
+    if (num_winners > 0){
+      let balance_per_winner = total_bid()/( num_winners as u64);
+      let i = 0;
+      while (i < num_winners) {
+        let winner = vector::borrow(winners, i);
+        let winnings = borrow_global_mut<RouletteWinnings>(*winner);
+        winnings.amount = winnings.amount + balance_per_winner;
+        i = i + 1;
+      };
+    };
+
+    empty_bids(self);
+
+  }
+
+  // tests...
+
 }
 }

Movement Standard Library

@@ -873,6 +978,7 @@

💻 MoveNav

use std::vector; use std::option; use std::debug; + use std::string; struct Graph { nodes: vector<Vector3>, @@ -897,7 +1003,7 @@

💻 MoveNav

} struct NavigationType { - name: string, + name: string::String, speed: u8, } @@ -909,22 +1015,22 @@

💻 MoveNav

if nav_type.name == "Walk" { debug::print("Walking at speed ", nav_type.speed); // Perform walking navigation logic - return option::None; + return option::none() } if nav_type.name == "Run" { debug::print("Running at speed ", nav_type.speed); // Perform running navigation logic - return option::None; + return option::none() } if nav_type.name == "Fly" { debug::print("Flying at speed ", nav_type.speed); // Perform flying navigation logic - return option::None; + return option::none() } else { debug::print("Unsupported navigation type"); - return option::None; + return option::none() } @@ -1148,9 +1254,52 @@

Semi-automati

In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities.

Share -{: .share-block} Share your semi-automated workflows with us!

+

Testing directives

+

Movement provides several directives for testing which are important to understand.

+

#[test]

+

Marks a test function. Can be provided with arguments.

+

When testing procedures that require signers, you will need set their values in the directive. Take the example below from 💻 ResourceRoulette

+
#![allow(unused)]
+fn main() {
+ #[test(account = @resource_roulette, bidder_one = @0x3)]
+#[expected_failure(abort_code = FLAG_WINNER)]
+public fun test_wins(account : &signer, bidder_one : &signer) acquires 
+}
+

Here our test expects both resource account, i.e., resource_roulette, and a bidder signer, i.e., bidder_one. We will discuss how these are used below.

+

#[test_only]

+

Test only is used for defining symbols that will only be compiled when testing. It can be useful for creating mocks and stubs, test boundaries and more.

+

#[expect_failure]

+

Allows you to check if a routine aborts as expected, i.e., matching a certain error code.

+

In addition to asserting intended failures, you can use this behavior to define more complex tests that are based on boundary conditions being crossed. The example below from 💻 Resource Roulette uses this pattern to test whether winners emerge from the pseudorandom spinner.

+
#![allow(unused)]
+fn main() {
+#[test_only]
+const BOUNDARY_WINNER : u64 = 1;
+
+// Under the current state rolling implementation this will work
+// More robust testing would calculate system dynamics
+#[test(account = @resource_roulette, bidder_one = @0x3)]
+#[expected_failure(abort_code = FLAG_WINNER)]
+public fun test_wins(account : &signer, bidder_one : &signer) acquires ResourceRoulette, RouletteWinnings {
+
+    init(account);
+    let i : u64 = 0;
+    while (i < 1_000) {
+        bid(bidder_one, 7);
+        spin();
+
+        let winnings = borrow_global<RouletteWinnings>(signer::address_of(bidder_one));
+        if (winnings.amount > 0) {
+        abort BOUNDARY_WINNER
+        };
+
+        i = i + 1;
+    };
+
+}
+}

Mocks, stubs, and state-based simulation

In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.

Mocks and stubs

@@ -1207,7 +1356,6 @@

For movement<

Contribution -{: .contributor-block} Help us develop mocking and stubbing tools for Movement.

Design Patterns

@@ -1752,7 +1900,9 @@

Bugs

diff --git a/book/book/searchindex.js b/book/book/searchindex.js index ed20d7c..5d3021d 100644 --- a/book/book/searchindex.js +++ b/book/book/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["Prologue.html#building-with-movement","week_1/week_1.html#week-1-introduction-to-move-and-movement","week_1/Inro_to_move.html#introduction-to-move-and-movement","week_1/Inro_to_move.html#libradiem","week_1/Inro_to_move.html#resource-orientation-and-the-blockchain","week_1/Inro_to_move.html#stack-model-programming-and-function-ownership","week_1/Inro_to_move.html#access-restriction-all-the-way-down","week_1/Inro_to_move.html#type-linearity-and-ownership","week_1/Inro_to_move.html#double-spending","week_1/Inro_to_move.html#virtual-machines-and-the-blockchain","week_1/Inro_to_move.html#smart-contracts-nodes-running-the-same-logic","week_1/Inro_to_move.html#verification-nodes-talking-about-running-the-same-logic","week_1/Inro_to_move.html#virtual-machine-makes-sure-the-same-logic-is-the-same-logic","week_1/Inro_to_move.html#move-virtual-machines","week_1/Inro_to_move.html#limitations-and-movement","week_1/Developer_setup.html#developer-setup","week_1/Developer_setup.html#the-move-ecosystem","week_1/Developer_setup.html#virtual-machines","week_1/Developer_setup.html#clis","week_1/Developer_setup.html#package-managers","week_1/Developer_setup.html#ide","week_1/Developer_setup.html#our-setup","week_1/Basic_move_syntax.html#basic-move-syntax","week_1/Basic_move_syntax.html#allocation-and-the-move-memory-model","week_1/Basic_move_syntax.html#expressions-and-control-flow","week_1/Basic_move_syntax.html#expressions","week_1/Basic_move_syntax.html#if","week_1/Basic_move_syntax.html#while-and-loop","week_1/Basic_move_syntax.html#types","week_1/Basic_move_syntax.html#primitives","week_1/Basic_move_syntax.html#abilities","week_1/Basic_move_syntax.html#generic-and-behavior","week_1/Basic_move_syntax.html#resources-references-and-mutation","week_1/Basic_move_syntax.html#misc-syntax","week_1/Module_and_build_system.html#modules-and-build-system","week_1/Module_and_build_system.html#packages","week_1/Module_and_build_system.html#program-types","week_1/Module_and_build_system.html#modules","week_1/Module_and_build_system.html#scripts","week_1/Module_and_build_system.html#building","week_1/Module_and_build_system.html#named_addresses","week_1/Debugging_basics.html#debugging-basic-smart-contracts","week_1/Debugging_basics.html#-helloworld","week_1/Debugging_basics.html#-fib","week_1/Debugging_basics.html#-resourceroulette","week_1/Movement_standard_library.html#movement-standard-library","week_1/Movement_standard_library.html#stddebug-and-aptos_stddebug","week_1/Movement_standard_library.html#stdvector-and-aptos_stdbig_vector","week_1/Movement_standard_library.html#aptos_stdtable","week_1/Movement_standard_library.html#stdoption","week_1/Movement_standard_library.html#aptos_framworkresource_account","week_1/Movement_standard_library.html#-resourceroulette-pt-2","week_1/Movement_standard_library.html#-minifs","week_2/week_2.html#week-2-advanced-move-and-move-for-movement","week_2/Generics.html#generics-type-constraints-and-polymorphism","week_2/Generics.html#generics","week_2/Generics.html#move-does-not-support-subtyping-or-composable-type-constraints","week_2/Generics.html#the-four-type-abilities-copy-drop-store-and-key","week_2/Generics.html#storage-polymorphism","week_2/Generics.html#unused-and-phantom-types","week_2/Generics.html#-movenav","week_2/Generics.html#the-future-of-move-type-programming","week_2/Safety.html#safety","week_2/Safety.html#linear-logic","week_2/Safety.html#move-type-system","week_2/Safety.html#the-move-prover","week_2/Intro_smart_contracts.html#introduction-to-smart-contracts","week_2/Intro_smart_contracts.html#origins-of-smart-contracts","week_2/Intro_smart_contracts.html#comparison--multicontractfib","week_2/Intro_smart_contracts.html#solidity","week_2/Intro_smart_contracts.html#anchor","week_2/Intro_smart_contracts.html#movement","week_2/Testing.html#testing","week_2/Testing.html#movement-profile-configuration","week_2/Testing.html#automated-testing","week_2/Testing.html#manual-testing","week_2/Testing.html#with-movement","week_2/Testing.html#semi-automation","week_2/Testing.html#mocks-stubs-and-state-based-simulation","week_2/Testing.html#mocks-and-stubs","week_2/Testing.html#state-based-simulation","week_2/Testing.html#for-movement","week_2/Design_patterns.html#design-patterns","week_2/Development_staging.html#smart-contracts-development-and-staging","week_2/Development_staging.html#development","week_2/Development_staging.html#move","week_2/Development_staging.html#movement","week_2/Development_staging.html#staging","week_3/week_3.html#week-3-m1-and-defi-applications","week_3/Deploying_on_M1.html#deploying-on-m1","week_3/Deploying_on_M1.html#-multicontractfib","week_3/Security.html#security","week_3/Security.html#m1","week_3/Security.html#attack-surface","week_3/Security.html#blockchain","week_3/Security.html#smart-contracts","week_3/Security.html#dapps","week_3/Security.html#handling-user-data","week_3/Security.html#data-minimization","week_3/Security.html#access-control","week_3/Security.html#encryption","week_3/Security.html#pseudonymization","week_3/Security.html#dos","week_3/Common_blockchain_system_design_patterns.html#common-blockchain-system-design-patterns","week_3/Common_blockchain_system_design_patterns.html#oracles","week_3/Common_blockchain_system_design_patterns.html#rollups","week_3/Common_blockchain_system_design_patterns.html#tokenization","week_3/Common_blockchain_system_design_patterns.html#state-channels","week_3/Common_blockchain_system_design_patterns.html#side-chains","week_3/Common_blockchain_system_design_patterns.html#collaborative-governance","week_3/Common_blockchain_system_design_patterns.html#atomic-swaps","week_3/Common_blockchain_system_design_patterns.html#proofs-and-zero-knowledge","week_3/Access_control.html#access-control","week_3/Access_control.html#signatures-and-certificates","week_3/Access_control.html#acls-rbac-and-abac","week_3/Access_control.html#permissioned-chains","week_3/DeFi.html#defi","week_3/DeFi.html#what-is-defi","week_3/DeFi.html#why-decentralize","week_3/DeFi.html#financial-applications-of-decentralized-systems","week_3/DeFi.html#purchasing","week_3/DeFi.html#lending","week_3/DeFi.html#trading","week_3/DeFi.html#defi-phenomena","week_3/DeFi.html#yield-farming","week_3/DeFi.html#flash-loans","week_3/DeFi.html#automated-market-making","week_3/DeFi.html#coins","week_3/DeFi.html#important-defi-algorithms","week_3/DeFi.html#constant-product-market-maker-cpmm-and-constant-mean-market-maker-cmmm","week_3/DeFi.html#fraud-proof-and-binary-search","week_3/DeFi.html#modern-portfolio-theory-mpt","week_3/DeFi.html#risk-models","week_4/week_4.html#week-4-projects","week_4/Project_requirements_and_recommendations.html#project-requirements-and-recommendations","week_4/Project_requirements_and_recommendations.html#requirements","week_4/Project_requirements_and_recommendations.html#project-recommendations","week_4/Project_requirements_and_recommendations.html#dapps","week_4/Project_requirements_and_recommendations.html#infrastructure","week_4/Project_requirements_and_recommendations.html#bounties","week_4/Project_requirements_and_recommendations.html#contribute","week_4/Guidelines.html#guidelines","week_4/Guidelines.html#requirements-gathering","week_4/Guidelines.html#pitching-and-presenting","week_4/Guidelines.html#crafting-a-paper-and-deck","week_4/Guidelines.html#the-pitch","week_4/Guidelines.html#the-presentation","week_4/Guidelines.html#support","week_4/Guidelines.html#general-outreach","week_4/Guidelines.html#bugs","week_4/Next_steps.html#next-steps"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":4,"title":2},"1":{"body":30,"breadcrumbs":10,"title":5},"10":{"body":47,"breadcrumbs":13,"title":6},"100":{"body":17,"breadcrumbs":7,"title":1},"101":{"body":21,"breadcrumbs":7,"title":1},"102":{"body":52,"breadcrumbs":7,"title":1},"103":{"body":0,"breadcrumbs":15,"title":5},"104":{"body":174,"breadcrumbs":11,"title":1},"105":{"body":58,"breadcrumbs":11,"title":1},"106":{"body":67,"breadcrumbs":11,"title":1},"107":{"body":40,"breadcrumbs":12,"title":2},"108":{"body":43,"breadcrumbs":12,"title":2},"109":{"body":62,"breadcrumbs":12,"title":2},"11":{"body":36,"breadcrumbs":13,"title":6},"110":{"body":43,"breadcrumbs":12,"title":2},"111":{"body":59,"breadcrumbs":13,"title":3},"112":{"body":12,"breadcrumbs":9,"title":2},"113":{"body":67,"breadcrumbs":9,"title":2},"114":{"body":119,"breadcrumbs":10,"title":3},"115":{"body":68,"breadcrumbs":9,"title":2},"116":{"body":13,"breadcrumbs":7,"title":1},"117":{"body":35,"breadcrumbs":7,"title":1},"118":{"body":35,"breadcrumbs":7,"title":1},"119":{"body":0,"breadcrumbs":10,"title":4},"12":{"body":45,"breadcrumbs":15,"title":8},"120":{"body":17,"breadcrumbs":7,"title":1},"121":{"body":235,"breadcrumbs":7,"title":1},"122":{"body":23,"breadcrumbs":7,"title":1},"123":{"body":0,"breadcrumbs":8,"title":2},"124":{"body":27,"breadcrumbs":8,"title":2},"125":{"body":22,"breadcrumbs":8,"title":2},"126":{"body":37,"breadcrumbs":9,"title":3},"127":{"body":146,"breadcrumbs":7,"title":1},"128":{"body":0,"breadcrumbs":9,"title":3},"129":{"body":12,"breadcrumbs":16,"title":10},"13":{"body":38,"breadcrumbs":10,"title":3},"130":{"body":18,"breadcrumbs":10,"title":4},"131":{"body":14,"breadcrumbs":10,"title":4},"132":{"body":16,"breadcrumbs":8,"title":2},"133":{"body":18,"breadcrumbs":6,"title":3},"134":{"body":15,"breadcrumbs":9,"title":3},"135":{"body":26,"breadcrumbs":7,"title":1},"136":{"body":15,"breadcrumbs":8,"title":2},"137":{"body":34,"breadcrumbs":7,"title":1},"138":{"body":52,"breadcrumbs":7,"title":1},"139":{"body":34,"breadcrumbs":7,"title":1},"14":{"body":63,"breadcrumbs":9,"title":2},"140":{"body":25,"breadcrumbs":7,"title":1},"141":{"body":11,"breadcrumbs":5,"title":1},"142":{"body":233,"breadcrumbs":6,"title":2},"143":{"body":0,"breadcrumbs":6,"title":2},"144":{"body":55,"breadcrumbs":7,"title":3},"145":{"body":48,"breadcrumbs":5,"title":1},"146":{"body":64,"breadcrumbs":5,"title":1},"147":{"body":12,"breadcrumbs":5,"title":1},"148":{"body":13,"breadcrumbs":6,"title":2},"149":{"body":11,"breadcrumbs":5,"title":1},"15":{"body":13,"breadcrumbs":9,"title":2},"150":{"body":10,"breadcrumbs":7,"title":2},"16":{"body":17,"breadcrumbs":9,"title":2},"17":{"body":64,"breadcrumbs":9,"title":2},"18":{"body":31,"breadcrumbs":8,"title":1},"19":{"body":42,"breadcrumbs":9,"title":2},"2":{"body":11,"breadcrumbs":10,"title":3},"20":{"body":21,"breadcrumbs":8,"title":1},"21":{"body":80,"breadcrumbs":8,"title":1},"22":{"body":22,"breadcrumbs":11,"title":3},"23":{"body":68,"breadcrumbs":12,"title":4},"24":{"body":0,"breadcrumbs":11,"title":3},"25":{"body":13,"breadcrumbs":9,"title":1},"26":{"body":42,"breadcrumbs":8,"title":0},"27":{"body":23,"breadcrumbs":9,"title":1},"28":{"body":0,"breadcrumbs":9,"title":1},"29":{"body":37,"breadcrumbs":9,"title":1},"3":{"body":68,"breadcrumbs":8,"title":1},"30":{"body":68,"breadcrumbs":9,"title":1},"31":{"body":55,"breadcrumbs":10,"title":2},"32":{"body":71,"breadcrumbs":11,"title":3},"33":{"body":28,"breadcrumbs":10,"title":2},"34":{"body":8,"breadcrumbs":11,"title":3},"35":{"body":59,"breadcrumbs":9,"title":1},"36":{"body":25,"breadcrumbs":10,"title":2},"37":{"body":26,"breadcrumbs":9,"title":1},"38":{"body":22,"breadcrumbs":9,"title":1},"39":{"body":146,"breadcrumbs":9,"title":1},"4":{"body":23,"breadcrumbs":10,"title":3},"40":{"body":28,"breadcrumbs":9,"title":1},"41":{"body":11,"breadcrumbs":13,"title":4},"42":{"body":49,"breadcrumbs":10,"title":1},"43":{"body":14,"breadcrumbs":10,"title":1},"44":{"body":168,"breadcrumbs":10,"title":1},"45":{"body":24,"breadcrumbs":11,"title":3},"46":{"body":62,"breadcrumbs":10,"title":2},"47":{"body":10,"breadcrumbs":10,"title":2},"48":{"body":34,"breadcrumbs":9,"title":1},"49":{"body":31,"breadcrumbs":9,"title":1},"5":{"body":91,"breadcrumbs":12,"title":5},"50":{"body":17,"breadcrumbs":9,"title":1},"51":{"body":30,"breadcrumbs":11,"title":3},"52":{"body":17,"breadcrumbs":9,"title":1},"53":{"body":20,"breadcrumbs":12,"title":6},"54":{"body":31,"breadcrumbs":14,"title":4},"55":{"body":76,"breadcrumbs":11,"title":1},"56":{"body":173,"breadcrumbs":16,"title":6},"57":{"body":116,"breadcrumbs":17,"title":7},"58":{"body":208,"breadcrumbs":12,"title":2},"59":{"body":132,"breadcrumbs":13,"title":3},"6":{"body":38,"breadcrumbs":11,"title":4},"60":{"body":139,"breadcrumbs":11,"title":1},"61":{"body":13,"breadcrumbs":14,"title":4},"62":{"body":21,"breadcrumbs":8,"title":1},"63":{"body":31,"breadcrumbs":9,"title":2},"64":{"body":86,"breadcrumbs":10,"title":3},"65":{"body":70,"breadcrumbs":9,"title":2},"66":{"body":0,"breadcrumbs":12,"title":3},"67":{"body":397,"breadcrumbs":12,"title":3},"68":{"body":27,"breadcrumbs":11,"title":2},"69":{"body":26,"breadcrumbs":10,"title":1},"7":{"body":35,"breadcrumbs":10,"title":3},"70":{"body":28,"breadcrumbs":10,"title":1},"71":{"body":9,"breadcrumbs":10,"title":1},"72":{"body":15,"breadcrumbs":8,"title":1},"73":{"body":87,"breadcrumbs":10,"title":3},"74":{"body":117,"breadcrumbs":9,"title":2},"75":{"body":36,"breadcrumbs":9,"title":2},"76":{"body":184,"breadcrumbs":8,"title":1},"77":{"body":27,"breadcrumbs":9,"title":2},"78":{"body":17,"breadcrumbs":12,"title":5},"79":{"body":97,"breadcrumbs":9,"title":2},"8":{"body":41,"breadcrumbs":9,"title":2},"80":{"body":37,"breadcrumbs":10,"title":3},"81":{"body":131,"breadcrumbs":8,"title":1},"82":{"body":17,"breadcrumbs":10,"title":2},"83":{"body":0,"breadcrumbs":14,"title":4},"84":{"body":10,"breadcrumbs":11,"title":1},"85":{"body":63,"breadcrumbs":11,"title":1},"86":{"body":28,"breadcrumbs":11,"title":1},"87":{"body":35,"breadcrumbs":11,"title":1},"88":{"body":11,"breadcrumbs":10,"title":5},"89":{"body":38,"breadcrumbs":9,"title":2},"9":{"body":24,"breadcrumbs":10,"title":3},"90":{"body":24,"breadcrumbs":8,"title":1},"91":{"body":17,"breadcrumbs":7,"title":1},"92":{"body":23,"breadcrumbs":7,"title":1},"93":{"body":0,"breadcrumbs":8,"title":2},"94":{"body":98,"breadcrumbs":7,"title":1},"95":{"body":130,"breadcrumbs":8,"title":2},"96":{"body":23,"breadcrumbs":7,"title":1},"97":{"body":0,"breadcrumbs":9,"title":3},"98":{"body":16,"breadcrumbs":8,"title":2},"99":{"body":43,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Welcome to Building with Movement ! Over the course of this booklet, we will be addressing topics related to developing for the Movement blockchain. This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time. By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages. If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz .","breadcrumbs":"Building with Movement » Building with Movement","id":"0","title":"Building with Movement"},"1":{"body":"This week kicks off our exploration of the Move language and Movement ecosystem. We will begin by introducing Move, setting up an appropriate developer environment, and covering the basics of the Move language. Many of the topics concerning the move language will be revisited in greater depth during Week 2.","breadcrumbs":"Week 1: Introduction to Move and Movement » Week 1: Introduction to Move and Movement","id":"1","title":"Week 1: Introduction to Move and Movement"},"10":{"body":"Smart contracts are self-executing agreements with predefined conditions encoded in code. In the blockchain context, smart contracts are executed by nodes across the network. Virtual machines, such as the Move Virtual Machine (Move VM) used in the Move programming language, ensure that all nodes interpret and execute the smart contract code uniformly. This guarantees that the same logic is executed across the network, promoting trust and enabling reliable transaction execution.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Smart Contracts: Nodes Running the Same Logic","id":"10","title":"Smart Contracts: Nodes Running the Same Logic"},"100":{"body":"Sensitive user data stored in the blockchain or associated systems should be encrypted to protect it from unauthorized access. Encryption algorithms and protocols should be carefully chosen and implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Encryption","id":"100","title":"Encryption"},"101":{"body":"To enhance privacy, blockchain applications can pseudonymize user data by replacing personally identifiable information with pseudonyms or cryptographic identifiers. This makes it difficult to directly link user identities to their data.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Pseudonymization","id":"101","title":"Pseudonymization"},"102":{"body":"Denial-of-Service (DoS) attacks aim to disrupt the availability of a blockchain application or the entire network by overwhelming the system with an excessive amount of requests or by exploiting vulnerabilities in the network's infrastructure. DoS attacks can result in service unavailability or degradation, impacting the application's functionality and user experience. Implementing robust DoS mitigation strategies is essential to protect against such attacks. As mentioned above, Avalanche's adaptive security approach it difficult to successfully deny network service.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » DoS","id":"102","title":"DoS"},"103":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Common blockchain system design patterns","id":"103","title":"Common blockchain system design patterns"},"104":{"body":"Oracles play a crucial role in blockchain applications by providing a bridge between the blockchain and the external world. They are trusted entities or mechanisms that bring off-chain data onto the blockchain, making it accessible to smart contracts and decentralized applications. Oracles enable the blockchain to interact with real-world events, data feeds, APIs, and other external systems. By leveraging oracles, blockchain applications can access and process external information in a reliable and secure manner. We built 💻 NewsMoves, examples/movement/new_moves, as a toy oracle contract that allows a trusted entity to write the latest Google news articles onto the blockchain. Please checkout the directory to publish the contract and run the Python data entity. module news_moves::news_moves { use std::signer; use std::vector; // Struct representing a news article entry struct Article has copy { timestamp: u64, title: vector, content: vector, } // NewsMoves struct representing the contract state struct NewsMoves { articles: vector
, } // Initialization function for the NewsMoves contract public fun init() { move_to(@news_moves, NewsMoves { articles: vector::empty
(), }); } public fun update( account: &signer, timestamp: u64, title: vector, content: vector, ) acquires NewsMoves { // update the contract at the account let account_addr = signer::address_of(account); let self = borrow_global_mut(account_addr); // add the new article vector::push_back(&mut self.articles, Article { timestamp: timestamp, title: title, content: content, }); } // Function to get the latest news article from the contract public fun getLatestArticle(): Article { // Get the latest article from the contrac let moves = borrow_global(@news_moves); let len = vector::length(&articles); assert(len > 0, 98); // Ensure there is at least one article let latestArticleIndex = len - 1; *moves.articles[latestArticleIndex] } }","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Oracles","id":"104","title":"Oracles"},"105":{"body":"Rollups are a layer 2 scaling solution for blockchains that aim to improve scalability and reduce transaction costs. They work by aggregating multiple transactions off-chain and then submitting a summary or proof of those transactions to the main chain. This reduces the burden on the main chain, allowing for faster and more efficient processing. Rollups can significantly increase transaction throughput and enable complex applications to run smoothly on the blockchain while maintaining a high level of security. We added a toy dispute mechanism 💻 NewsMoves, examples/movement/new_moves to demonstrate how part of a rollup could implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Rollups","id":"105","title":"Rollups"},"106":{"body":"Tokenization is the process of representing real-world or digital assets as tokens on a blockchain. It enables the creation of digital representations (tokens) that can be owned, transferred, and managed on the blockchain. Tokenization has broad applications, ranging from representing physical assets like real estate or artwork to creating digital assets like utility tokens or security tokens. By tokenizing assets, blockchain-based systems can provide increased liquidity, fractional ownership, and facilitate seamless transferability of assets in a secure and transparent manner. We implement a toy tokenization scheme and separately used our framework's aptos_token_objects to augment 💻 NewsMoves, examples/movement/new_moves and demonstrate Movement token utilities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Tokenization","id":"106","title":"Tokenization"},"107":{"body":"State channels are a scalability solution in blockchain that allows off-chain execution of transactions between participants. They enable fast and low-cost transactions by keeping most of the interactions off-chain, while the final state is settled on the main blockchain. State channels are particularly useful for frequent and fast interactions, such as microtransactions or gaming applications, as they reduce congestion and improve transaction throughput.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » State Channels","id":"107","title":"State Channels"},"108":{"body":"Side chains are separate blockchains that are connected to the main blockchain, often referred to as the \"main chain\" or \"parent chain.\" They provide an additional layer of scalability and flexibility by allowing specific use cases or applications to operate on their own chain while still being interoperable with the main chain. Side chains can handle transactions and smart contracts independently, reducing the load on the main chain and enabling specialized functionalities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Side Chains","id":"108","title":"Side Chains"},"109":{"body":"Collaborative governance refers to the process of making collective decisions and managing blockchain networks through the participation and collaboration of multiple stakeholders. It involves mechanisms such as voting, consensus-building, and community-driven decision-making to govern the rules, upgrades, and overall direction of a blockchain network. Collaborative governance aims to ensure inclusivity, transparency, and alignment of interests among network participants. aptos_framework::aptos_governance provides a host of out of the box tools for handling proposals, dynamic voting systems, and member rewards. Using it you can implement a DAO and tests in a about a thousand lines of code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Collaborative Governance","id":"109","title":"Collaborative Governance"},"11":{"body":"Verification is a critical aspect of the blockchain ecosystem. Nodes need to agree on the validity of transactions and smart contract execution. Virtual machines facilitate this verification process by providing a standardized environment where nodes can discuss and agree upon the execution of the same logic. By achieving consensus on the outcomes, nodes can ensure the integrity and consistency of the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Verification: Nodes Talking About Running the Same Logic","id":"11","title":"Verification: Nodes Talking About Running the Same Logic"},"110":{"body":"Atomic swaps are a mechanism that allows the exchange of different cryptocurrencies or digital assets between two parties without the need for an intermediary or trusted third party. It enables secure peer-to-peer transactions directly between participants, ensuring that either the entire transaction is executed or none of it occurs. Atomic swaps enhance interoperability and facilitate decentralized exchanges by eliminating the need for centralized intermediaries.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Atomic Swaps","id":"110","title":"Atomic Swaps"},"111":{"body":"Zero-knowledge proofs are cryptographic techniques that enable a party to prove knowledge of certain information without revealing the actual information itself. They allow for privacy-preserving transactions and interactions on the blockchain, where participants can validate the correctness of a statement or the possession of certain data without disclosing sensitive details. Zero-knowledge proofs enhance confidentiality and confidentiality in blockchain applications, ensuring that privacy-sensitive information remains secure while still being verifiable. At Movement, we're working on a Zero-Knowledge VM powered by the Move Prover.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Proofs and Zero-Knowledge","id":"111","title":"Proofs and Zero-Knowledge"},"112":{"body":"This section briefly covers some considerations of blockchain access control and highlights places where Movement and this repo may be helpful.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Access Control","id":"112","title":"Access Control"},"113":{"body":"Signatures and certificates play a crucial role in access control on the blockchain. They enable authentication and ensure that only authorized entities can perform specific actions or access certain resources. Signatures provide proof of ownership and authenticity, while certificates verify the identity and permissions of participants. By utilizing strong cryptographic signatures and certificates, blockchain applications can establish secure and tamper-proof access control mechanisms. Avalanche uses Transport Layer Security, TLS, to protect node-to-node communications from eavesdroppers. The Avalanche virtual machine uses elliptic curve cryptography, specifically secp256k1, for its signatures on the blockchain, and signs all messages.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Signatures and certificates","id":"113","title":"Signatures and certificates"},"114":{"body":"Access Control Lists (ACLs), Role-Based Access Control (RBAC), and Attribute-Based Access Control (ABAC) are common frameworks used to manage and enforce access control policies in blockchain applications. ACLs define permissions based on a list of entities and their associated access rights. RBAC assigns permissions to roles, allowing for more centralized management of access control. ABAC grants access based on attributes, such as user attributes or environmental conditions. Each framework has its strengths and can be tailored to meet specific access control requirements in a blockchain application. A common pattern in Move and Movement development is to assert a contract owner. Using named addresses, @named_address. script owner_address::important_script { const ERNO_OWNER_ONLY : u64 = 0 fun do_important_thing(signer : address){ assert!(signer == @owner_address, ERNO_OWNER_ONLY); // do thing... } } Manipulation of addresses often serves as the basis for Movement access control mechanisms. The Move language provides host of unique safe ways to implement access controls for resources. aptos_framework::aptos_governance provides an easy to use module for governance which can allow for decentralized managed of these control lists.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » ACLs, RBAC, and ABAC","id":"114","title":"ACLs, RBAC, and ABAC"},"115":{"body":"Permissioned chains are blockchain networks that restrict participation to authorized entities only. Unlike public or permissionless blockchains, permissioned chains require participants to obtain explicit permission or be part of a predefined set of trusted entities. Permissioned chains are often employed in enterprise or consortium settings, where privacy, confidentiality, and control over network participants are paramount. By leveraging permissioned chains, blockchain applications can enforce stricter access control and maintain a trusted network environment. While the Movement testnet is not a permissioned chain, our virtual machines strong access controls--due to the Move language--make it easy to restrict access to select resources.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Permissioned chains","id":"115","title":"Permissioned chains"},"116":{"body":"This section treats with a general overview DeFi problems and solution, and the faculties of Movement M1 to help create these solutions.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi","id":"116","title":"DeFi"},"117":{"body":"Decentralized Finance (DeFi) refers to a category of financial applications and platforms built on blockchain networks that aim to provide open, permissionless, and decentralized alternatives to traditional financial systems. DeFi leverages the transparency, immutability, and programmability of blockchain technology to enable financial activities without the need for intermediaries or centralized authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » What is DeFi?","id":"117","title":"What is DeFi?"},"118":{"body":"Decentralization in DeFi brings several advantages, including increased transparency, censorship resistance, improved accessibility, and reduced reliance on trusted third parties. By removing intermediaries and enabling peer-to-peer transactions, decentralization can enhance efficiency, reduce costs, and empower individuals to have more control over their financial activities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Why Decentralize?","id":"118","title":"Why Decentralize?"},"119":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Financial Applications of Decentralized Systems","id":"119","title":"Financial Applications of Decentralized Systems"},"12":{"body":"The virtual machine acts as an execution environment for smart contracts and other blockchain operations. It ensures that the same logic applied to a smart contract on one node is identical to the logic applied on every other node. This consistency is essential for achieving consensus and maintaining the immutability of the blockchain. Virtual machines, such as the Move VM, enforce the rules and protocols defined by the blockchain platform, allowing for secure and reliable execution of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual Machine: Makes Sure the Same Logic is the Same Logic","id":"12","title":"Virtual Machine: Makes Sure the Same Logic is the Same Logic"},"120":{"body":"Decentralized systems allow for the direct peer-to-peer purchase of digital assets, cryptocurrencies, and other goods or services without the need for intermediaries or central authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Purchasing","id":"120","title":"Purchasing"},"121":{"body":"DeFi platforms enable individuals to lend and borrow funds directly from other users through smart contracts, removing the need for traditional financial intermediaries such as banks. Check out examples/movement/gimme_mini for a toy implementation of both a direct and peer-pooled lending platform. // example supply function from gimme_mini direct lending platform\npublic fun supply( account: &signer, market_obj: Object, underlying_fa: FungibleAsset\n): FungibleAsset acquires Vault, Market { assert!( fungible_asset::asset_metadata(&underlying_fa) == fungible_asset::store_metadata(market_obj), ERR_MARKET_MISMATCH ); let underlying_amount = fungible_asset::amount(&underlying_fa); // update market fungible store fungible_asset::deposit(market_obj, underlying_fa); // mint ctoken let ctoken_amount = underlying_to_ctoken(market_obj, underlying_amount); let market = borrow_global_mut(object::object_address(&market_obj)); let ctoken = fungible_asset::mint(&market.ctoken_mint_ref, ctoken_amount); // update user vault init_vault_if_not_exists(account); let vault = borrow_global_mut(signer::address_of(account)); if (!vector::contains(&vault.collaterals, &market_obj)) { vector::push_back(&mut vault.collaterals, market_obj); }; ctoken\n} module peer_pooled_lend::peer_pooled_lend { use std::signer; friend mini_lend::LoanOfficer; /// Lends funds to liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough funds to lend. /// 2. Check for suspicious activity. /// 2. If account has enough funds to lend... /// 1. MiniLend will transfer funds from account to liquidity pool. public fun lend(account : signer, amount : u64){ // ... } /// Allows lender to seek repayment from liquidity pool. /// 1. LoanOfficer will... /// 1. Determine whether account is lender. /// 2. Determine loan period is up. /// 2. If the account is a valid lender and the loan period is up... /// 1. MiniLend will transfer funds from liquidity pool to account or self-collateralize. public fun seek_repayment(account : signer, amount : u64){ // ... } /// Borrows funds from liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough collateral /// 2. Check account credit. /// 3. If account has enough collateral and credit... /// 2. If account has enough collateral and credit... /// 1. MiniLend will borrow funds from liquidity pool /// 3. Whether or not the account will successully borrow funds, run the audit function. public fun borrow(account : signer, amount : u64){ // ... } public fun repay(account : signer, amount : u64){ // ... } /// Looks over loan tables and dispatches events to manage loans /// Anyone can call this function enabling decentralized book keeping. public fun audit(account : signer){ // ... } }","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Lending","id":"121","title":"Lending"},"122":{"body":"Decentralized exchanges (DEXs) facilitate trustless trading of digital assets directly between users, eliminating the need for centralized order books and custody of funds by intermediaries. Movement has an ready-made DEX.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Trading","id":"122","title":"Trading"},"123":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi Phenomena","id":"123","title":"DeFi Phenomena"},"124":{"body":"Yield farming involves leveraging various DeFi protocols to maximize returns on cryptocurrencies or digital assets by providing liquidity, staking, or participating in other activities to earn additional rewards. Check out examples/movement/yield_gardner for a toy implementation of a yield farmer.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Yield Farming","id":"124","title":"Yield Farming"},"125":{"body":"Flash loans are uncollateralized loans that allow users to borrow funds temporarily for specific transactions within a single blockchain transaction. They exploit the composability and fast transaction finality of smart contracts.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Flash Loans","id":"125","title":"Flash Loans"},"126":{"body":"Automated market makers (AMMs) are decentralized protocols that use mathematical formulas to determine asset prices and provide liquidity for trading. They have revolutionized liquidity provision in DeFi by eliminating the need for order books and enabling continuous trading. Check out examples/movement/gimme_mini for a toy implementation of a lending platform built atop the liquidswap AMM.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Automated Market Making","id":"126","title":"Automated Market Making"},"127":{"body":"Coins are typically created and recorded on the blockchain through a consensus mechanism, ensuring their authenticity and immutability. They can be transferred between participants on the network, used for transactions, and sometimes serve additional purposes such as voting rights or access to certain functionalities within decentralized applications (dApps) built on the blockchain. Coins play a fundamental role in enabling economic activity and incentivizing participation within the blockchain ecosystem. Movement provides built-in utilties to easily create and managed coins at varying levels of abstraction. // A managed coin.\n//:!:>sun\nmodule sun_coin::sun_coin { struct SunCoin {} fun init_module(sender: &signer) { aptos_framework::managed_coin::initialize( sender, b\"Sun Coin\", b\"SUN\", 6, false, ); }\n}\n//<:!:sun // Handling coin transactions\nscript { use aptos_framework::coin; use std::vector; // There are two ways to approach this problem // 1. Withdraw the total then distribute the pieces by breaking it up or // 2. Transfer for each amount individually fun main(sender: &signer, split : vector
, amount: u64) { let i = 0; let len = vector::length(split); let coins = coin::withdraw(sender, amount); while (i < len) { let coins_pt = coin::extract(&mut coins, amount / len); coin::deposit( vector::borrow(split, i), coins_pt ); }; }\n} Stablecoins are a type of coin that aims to maintain a stable value, typically pegged to a fiat currency like the US Dollar or a basket of assets. They provide price stability, making them suitable for various use cases within the decentralized finance ecosystem.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Coins","id":"127","title":"Coins"},"128":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Important DeFi Algorithms","id":"128","title":"Important DeFi Algorithms"},"129":{"body":"These algorithms are used in AMMs to maintain liquidity and determine prices based on the constant product or mean principles.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)","id":"129","title":"Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)"},"13":{"body":"Several implementations of the Move virtual machine exist, including the Move VM, Aptos VM, and Sui VM. These implementations provide alternative approaches to executing Move code and offer flexibility and compatibility with different blockchain platforms and ecosystems. Each implementation has its own characteristics, optimizations, and use cases, catering to diverse blockchain development requirements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Move Virtual Machines","id":"13","title":"Move Virtual Machines"},"130":{"body":"These algorithms enhance security in DeFi protocols by detecting and mitigating potential fraud or malicious activities. Binary search is often used to optimize search and validation processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Fraud Proof and Binary Search","id":"130","title":"Fraud Proof and Binary Search"},"131":{"body":"MPT is applied in DeFi to optimize asset allocation and portfolio management, considering risk, returns, and correlations among different assets.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Modern Portfolio Theory (MPT)","id":"131","title":"Modern Portfolio Theory (MPT)"},"132":{"body":"DeFi relies on various risk models and methodologies to assess and manage risks associated with lending, borrowing, and other financial activities in decentralized systems.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Risk Models","id":"132","title":"Risk Models"},"133":{"body":"Week 4 is all about building projects. If you're reading through this notebook outside of our hackathon, we hope you find the resources useful for building your first Movement project.","breadcrumbs":"Week 4: Projects » Week 4: Projects","id":"133","title":"Week 4: Projects"},"134":{"body":"In this section we discuss project requirements and recommendations. Many of the recommendations involve working on technologies that we're keen on developing and incubating for Movement!","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project Requirements and Recommendations","id":"134","title":"Project Requirements and Recommendations"},"135":{"body":"For all hackathon participants, we expect... a pitch deck, a paper, links to source developed during the hackathon. We've included templates for LaTeX and PPT in the templates/presentation folder. You will make five minute pitches using your deck at the end of the hackathon.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Requirements","id":"135","title":"Requirements"},"136":{"body":"There are a variety of ways to use and contribute to the Movement ecosystem. These include dApp development, infrastructure development, bounties, and direct contributions to our software.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project recommendations","id":"136","title":"Project recommendations"},"137":{"body":"The content of this course should have prepared you to work on dApps such as the following. Continue with 💻 GimmeMini, examples/movement/gimme_mini Continue with 💻 MiniDex, examples/movement/mini_dex. Create a mini oracle provider, rollup provider, or validator set management system. You may wish to continue from 💻 NewsMoves examples/movement/new_moves Decentralized Twitter clone. You may fish to continue from 💻 MyFirstDapp examples/movement/my_first_dapp.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » dApps","id":"137","title":"dApps"},"138":{"body":"We're all about continuing to build out the Movement ecosystem to empower more awesome developers like you. At the time of writing, the following are all things we have a close eye on. Connect a new wallet! Right now we only support Pontem on testnet. Create an L2 that allows us to deposit levered funds in another protocol. Create a framework for borrowing funds against an asset. Create a framework that allows for customizable liquidity strategies. Build integrations with Perp . Develop a stable swap with another subnet","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Infrastructure","id":"138","title":"Infrastructure"},"139":{"body":"We've also put together a zealy.io community. Some of our bounties include. Report UI/UX bug Report backend bug Deploy App with 100 unique smart contract interactions Community Award To 3 Most used dApps Screenshot using App Deploy project from Aptos / Sui Contribute to Champions","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Bounties","id":"139","title":"Bounties"},"14":{"body":"The transaction processing speed (TPS) of the underlying blockchain is a primary limitation on smart contract complexity. Higher TPS allows for more intricate and computationally intensive smart contracts to be executed within a given time frame. Movement facilitates a theoretical maximum TPS of 160,000 by combining the technologies of Move and Avalanche Snowball consensus. This scalability enhancement enables more sophisticated and resource-intensive smart contracts to be processed efficiently. In addition to its high TPS, Movement provides developer-friendly features via its Aptos-based VM and an ergonomic standard library .","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Limitations and Movement","id":"14","title":"Limitations and Movement"},"140":{"body":"We welcome contributions to our source, including the movement-hack repo from which this book is sourced. Generally speaking we encourage you to... Develop new starter code and example modules. Submit PRs against open issues. Improve documentation.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Contribute","id":"140","title":"Contribute"},"141":{"body":"This section outlines some best practices for the project and Movement success, as well as how to get in touch with the team for support.","breadcrumbs":"Week 4: Projects » Guidelines » Guidelines","id":"141","title":"Guidelines"},"142":{"body":"Requirements gathering is a critical phase in the software development process that involves capturing, analyzing, and documenting the needs and expectations of stakeholders. It lays the foundation for a successful project by ensuring a clear understanding of what needs to be built. Here are some steps for successful requirements gathering: Identify Stakeholders: Identify and involve all relevant stakeholders, including clients, end-users, subject matter experts, and other project team members. Each stakeholder brings unique perspectives and insights into the project requirements. Define the Scope: Clearly define the scope of the project by outlining its objectives, boundaries, and limitations. This helps set realistic expectations and ensures that the requirements gathering process remains focused. Conduct Interviews and Workshops: Engage in one-on-one interviews and group workshops with stakeholders to gather their input, understand their needs, and identify any existing challenges or pain points. Encourage open and honest communication to capture comprehensive requirements. Document Requirements: Document the gathered requirements in a structured manner, ensuring clarity, completeness, and traceability. Use techniques such as use cases, user stories, functional and non-functional requirements, and process flows to capture different aspects of the system. Validate and Verify: Validate the gathered requirements by reviewing them with stakeholders to ensure accuracy and alignment with their expectations. Seek their feedback and address any concerns or discrepancies. Verify the requirements against the project objectives and constraints. Prioritize Requirements: Prioritize the requirements based on their importance, urgency, and impact on project success. Collaborate with stakeholders to establish a clear understanding of the most critical and high-priority features. Iterate and Refine: Requirements gathering is an iterative process. Continuously refine and iterate the requirements based on feedback, changing project needs, and evolving stakeholder requirements. Regularly communicate and collaborate with stakeholders to ensure ongoing alignment. Remember, successful requirements gathering involves effective communication, active listening, and collaboration with stakeholders throughout the process. By following these steps, developers can gather comprehensive and accurate requirements that form a solid foundation for successful software development. If you require further assistance or guidance, feel free to reach out to Movement Labs using the contact information below in Support .","breadcrumbs":"Week 4: Projects » Guidelines » Requirements Gathering","id":"142","title":"Requirements Gathering"},"143":{"body":"","breadcrumbs":"Week 4: Projects » Guidelines » Pitching and presenting","id":"143","title":"Pitching and presenting"},"144":{"body":"Crafting a concise and visually appealing pitch deck is crucial for effectively presenting your small blockchain project at the end of a hackathon. Structure your deck to highlight the problem your project solves, the solution you've developed, the target market, and the unique value it offers. Emphasize the key features and benefits of your project, along with any notable achievements during the hackathon. Use clear and concise language, visual aids, and a consistent design to enhance the overall presentation. We've provided a templates for LaTeX and PPT in presentations/templates.","breadcrumbs":"Week 4: Projects » Guidelines » Crafting a paper and deck","id":"144","title":"Crafting a paper and deck"},"145":{"body":"During the pitch, focus on delivering a compelling and concise message that captures the attention of the judges and participants. Clearly articulate the problem your project addresses, the solution it provides, and how it leverages blockchain technology. Highlight the practical applications, benefits, and potential market opportunities of your project. Demonstrate how your project differentiates itself from existing solutions and how it aligns with the hackathon's theme or challenges. Be confident, enthusiastic, and passionate about your project, conveying the potential impact and value it brings.","breadcrumbs":"Week 4: Projects » Guidelines » The pitch","id":"145","title":"The pitch"},"146":{"body":"When delivering your presentation, aim for clarity, professionalism, and effective communication. Begin with a concise and attention-grabbing introduction to hook the audience. Provide a brief overview of your project's development process, focusing on the key milestones achieved during the hackathon. Showcase any live demos, prototypes, or working features of your project, demonstrating its functionality and value proposition. Highlight the technical aspects of your project, such as the blockchain technology used, any smart contracts implemented, and the scalability or security measures in place. Conclude your presentation with a compelling call-to-action, inviting the judges and participants to engage with your project and explore its potential.","breadcrumbs":"Week 4: Projects » Guidelines » The presentation","id":"146","title":"The presentation"},"147":{"body":"We're happy to support all developers on Movement. Whatever your problems, needs or desires, we hope we can help out.","breadcrumbs":"Week 4: Projects » Guidelines » Support","id":"147","title":"Support"},"148":{"body":"For general questions, comments, and concerns please email liam@movementlabs.xyz or open up a new discussion in movemntdev/movement-hack .","breadcrumbs":"Week 4: Projects » Guidelines » General outreach","id":"148","title":"General outreach"},"149":{"body":"If you believe you've identified a bug, please create an issue in movemntdev/movement-hack . We will triage accordingly.","breadcrumbs":"Week 4: Projects » Guidelines » Bugs","id":"149","title":"Bugs"},"15":{"body":"This section examines tooling and provides setup instructions for working with the Movement blockchain and the various examples in covered in this booklet.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Developer Setup","id":"15","title":"Developer Setup"},"150":{"body":"Now that you've completed this book and your projects, we invite you to provide your feedback and stay in touch!","breadcrumbs":"Week 4: Projects » Next Steps » Next Steps","id":"150","title":"Next Steps"},"16":{"body":"The budding Move ecosystem sports a variety of developer friendly tools. As we list off tools that will be relevant to this booklet, keep in mind that there are number of projects we have not included.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » The Move ecosystem","id":"16","title":"The Move ecosystem"},"17":{"body":"As previously discussed, there are several virtual machine implementations available for Move development--each of with is paired with particular blockchain. Besides the Movement VM, the most well-known Move virtual machines are Move VM, Aptos VM, and Sui VM We provide a comparison of these different virtual machines in our docs . When selecting a virtual machine for development its important to consider performance, ease of use, and stability. Aptos VM built upon the original and stable Move VM to provide an improved developer experience. The Movement VM builds upon Aptos VM to provide improved performance.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Virtual machines","id":"17","title":"Virtual machines"},"18":{"body":"There are three CLIs worth note in the Move language development space. All support building, testing, deploying, and running smart contracts. move : the original CLI for Move development. aptos: the CLI for Aptos development. movement : our very own CLI. In this booklet we will be working with move and movement.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » CLIs","id":"18","title":"CLIs"},"19":{"body":"Move has a package manager, movey . However, generally we will recommend adding dependencies directly to your Move.toml file. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Package managers","id":"19","title":"Package managers"},"2":{"body":"This section is intended to orient the reader on the history of the language and various Move virtual machine implementations.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Introduction to Move and Movement","id":"2","title":"Introduction to Move and Movement"},"20":{"body":"There are several useful development enviroments for Move. This book will be geared towards using VsCode because of the its developer container features and its Move analyzer . However, syntax highlighting has been implemented for other IDEs including Vim .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » IDE","id":"20","title":"IDE"},"21":{"body":"We'll be using the move and movement CLIs; no package manager; and VsCode most-often running the movement-dev Docker container from public.ecr.aws/c4i6k4r8/movement-dev . To get started... Clone the repo from which this book originates: https://github.com/movemntdev/movement-hack Open the repo in VsCode. Based on the advice provided for a given project, reopen the repo in one of move, movement-dev, anchor, or solidity devcontainers . Alternatively, when working with movement-dev you may: docker image pull public.ecr.aws/c4i6k4r8/movement-dev\ndocker run -it -v \"$(pwd):/workspace\" public.ecr.aws/c4i6k4r8/movement-dev /bin/bash We will also occasionally use Rust and Python to complete various programming examples. We will also discuss using our proxy service with the JavaScript. The movement-dev developer container provides an easy start place for this alternative means of interacting with the subnet .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Our Setup","id":"21","title":"Our Setup"},"22":{"body":"This section treats with basic Move syntax, comparing the language to Rust. This is merely intended to provide some guidance for booklet participants. More comprehensive guides can be found at move-book.com and move-language.github.io .","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Basic Move Syntax","id":"22","title":"Basic Move Syntax"},"23":{"body":"Move's resource-oriented language model leads to a unique memory model: Resources in Move are allocated and deallocated implicitly based on their defined lifespan and ownership semantics. This ensures proper resource management without the need for explicit memory allocation or deallocation. Resources are created and stored on the blockchain as part of a transaction, providing a persistent and tamper-resistant storage mechanism. Global storage in Move allows for the storage of resource data that can be accessed across multiple transactions and smart contracts. While function ownership in Move is similar to Rust, it is less permissive and closer to being purely linear--restricting the set of possible borrows.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Allocation and the Move Memory Model","id":"23","title":"Allocation and the Move Memory Model"},"24":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions and Control Flow","id":"24","title":"Expressions and Control Flow"},"25":{"body":"Move use a similar expression-orientation to Rusts. Block returns are possible. fun eight() : u8 { 8\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions","id":"25","title":"Expressions"},"26":{"body":"Branching in Move is accomplished via if and else statements. There is not an else if statement. if (a) { debug::print(&0);\n} else { debug::print(&99);\n}; if is an expression. let value = if (true) { 8 } else {0}; // value set to 8 Move syntax for expressions and control flow shares similarities with Rust. Basic control flow constructs like if, while, and loop are present in Move as well. However, Move has a more limited set of expressions and control flow features compared to Rust.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » if","id":"26","title":"if"},"27":{"body":"Move supports while and loop looping constructs. while loops while condition is true. loop loops infinitely. There is no for loop, both while and loop are roughly equally used as replacements. // example of while loop\nwhile (i < 10) { Vector::push_back(&mut a, i); i = i + 1;\n};","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » while and loop","id":"27","title":"while and loop"},"28":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Types","id":"28","title":"Types"},"29":{"body":"Move has the primitive types boolean, u8, u64, u128, address, and signer. Move also supports hex- and byte-string literals. let byte_val = b\"hello, world!\"; // byte string\nlet hex_val = x\"48656C6C6F210A\"; // hex string Integers can be type cast with the as keyword. The signer type represents the sender of a transaction and is used for access control and authentication.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Primitives","id":"29","title":"Primitives"},"3":{"body":"The Move programming language was originally developed by Facebook's Libra project, now known as Diem, to facilitate the creation of smart contracts on its blockchain platform. The language takes its name from the underlying concept of moving resources rather than copying them, aligning with the principles of resource-oriented programming. Move was designed to address the unique challenges of blockchain development, such as security, efficiency, and scalability. Its origins can be traced back to the vision of creating a blockchain-based financial infrastructure that would be accessible to billions of people around the world. Today, Move continues to evolve as an open-source language, with a growing ecosystem and community supporting its development and adoption.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Libra/Diem","id":"3","title":"Libra/Diem"},"30":{"body":"Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust. copy: The copy ability allows for the type's value to be copied. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. Conditional abilities allow types to have different behaviors based on conditions.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Abilities","id":"30","title":"Abilities"},"31":{"body":"Move supports generics for structs and functions. It's possible to achieve polymorphic behavior with generics and phantom types. Often you will want to nest generic structures inside of resources to achieve polymorphism. See the LiquidityPool generic structure below for an example. // polymorphic coin fee obtainment from liquidswap.\n/// Get fee for specific pool.\npublic fun get_fee(): u64 acquires LiquidityPool { assert!(coin_helper::is_sorted(), ERR_WRONG_PAIR_ORDERING); assert!(exists>(@liquidswap_pool_account), ERR_POOL_DOES_NOT_EXIST); let pool = borrow_global>(@liquidswap_pool_account); pool.fee\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Generic and behavior","id":"31","title":"Generic and behavior"},"32":{"body":"You can create a reference with &. Reference Global storage operators move_to, move_from, borrow_global_mut, borrow_global, and exists in Move enable reading from and writing to resources stored in the blockchain's global storage. The acquires keyword is used to specify which resources a function acquires ownership of a resource during execution. module collection::collection { struct Item has store, drop {} struct Collection has key, store { items: vector } public fun add_item(account: &signer) acquires Collection { let collection = borrow_global_mut(signer::address_of(account)); vector::push_back(&mut collection.items, Item {}); }\n} Move allows the creation of read-only references to resources, ensuring that functions cannot modify them. Here's a small code snippet demonstrating the use of Move syntax:","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Resources, References, and Mutation","id":"32","title":"Resources, References, and Mutation"},"33":{"body":"The public keyword in Move indicates that a function can be invoked from outside the current module. The native keyword is used to declare functions that are implemented in the blockchain runtime or in an external module. There are VM specific directives; in Movement we will address #[inline], #[view], #[test_only], and #[test].","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Misc. syntax","id":"33","title":"Misc. syntax"},"34":{"body":"This section treats with the basic functionality of the module and build system for Move.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules and Build System","id":"34","title":"Modules and Build System"},"35":{"body":"A folder with a Move.toml and compilable move code is a package. Packages may define external dependencies, which can be local or store at a remote repository. All Move clients used herein will automatically fetch and compile dependencies. When using movement, we will also define package addresses in the Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Packages","id":"35","title":"Packages"},"36":{"body":"Move has two different types of program: modules and scripts . As a general rule, you should use scripts for short proofs of concept or as an entrypoint, see Script Based Design . You can define multiple scripts and modules in the same file.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Program types","id":"36","title":"Program types"},"37":{"body":"Modules are great for code reuse. They can be reference and linked. A module takes the following form. module
:: { ( | | | | )*\n} When attempting to use logic in a module, you must specify the member function that you wish to call.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules","id":"37","title":"Modules"},"38":{"body":"Scripts are a slightly easier to use alternative to modules. They take the following form. script { * * fun <[type parameters: constraint]*>([identifier: type]*) \n} Scripts can only have one function in their body.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Scripts","id":"38","title":"Scripts"},"39":{"body":"When developing for modules in move you will typically need to manually publish the module before being able to run. The exception to this rule is when using movement to run unit tests. movement move publish will handle both the building and publication of modules in your current working directory. If you simply want to build the module to inspect its bytecode run movement move build. Below is an example bash script for publishing and running a function in a module end-to-end using the Movement CLI. #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Building","id":"39","title":"Building"},"4":{"body":"Resource-orientation is a fundamental concept in programming languages like Move that greatly benefits the blockchain ecosystem. By aligning with the principles of resource-oriented programming, the blockchain can enhance security, efficiency, and reliability of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Resource-orientation and the blockchain","id":"4","title":"Resource-orientation and the blockchain"},"40":{"body":"Within aptos_framework, you will be able to use named addresses. These will be replaced at compile time whether they are in the adrress position in a module ::my_module or marked with an @. In your Move.toml, you may specify these addresses as below. [addresses]\nstd = \"0x1\"\n = \"_\" You may then specify them when compiling using --=.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » named_addresses","id":"40","title":"named_addresses"},"41":{"body":"This section introduces a few basic smart contracts from this repository as a starting point for programming activites.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » Debugging Basic Smart Contracts","id":"41","title":"Debugging Basic Smart Contracts"},"42":{"body":"Is a very simple program for MoveVM. You can find it at examples/move/hello_world. script { use std::debug; // use std::vector; fun debug_script(account : signer) { // Encode the \"Hello, world!\" as a byte string. let hello = b\"Hello, world!\"; // Print the byte string as a vector by passing a reference to the byte string. debug::print>(&hello); }\n} To run... move sandbox run sources/hello_world_script.move --signers 0xf\n> [debug] 0x48656c6c6f2c20776f726c6421 Double-check the output hex... echo 48656c6c6f2c20776f726c6421 | xxd -r - p","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 HelloWorld","id":"42","title":"💻 HelloWorld"},"43":{"body":"The obligatory Move program that computes the $nth$ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 Fib","id":"43","title":"💻 Fib"},"44":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it examples/move/resource_roulette. module resource_roulette::resource_roulette { use std::vector; // ResourceRoulette struct representing the contract state struct ResourceRoulette { bids: vector>, owner: address, } struct RouletteWinnings { amount : u64 } // Initialization function for the ResourceRoulette contract public entry fun init(account: &signer) { let bids = vector::empty>(); let i = 0; while i < 32 { vector::push_back(&mut bids, vector::empty
()) i = i + 1; }; move_to(account, ResourceRoulette { bids, owner: @resource_roulette, }); } // Bid function to allow signers to bid on a specific slot public entry fun bid(sender: &signer, slot: u8) acquires ResourceRoulette { let roulette = borrow_global_mut(@resource_roulette); let bids_size = vector::length(&roulette.bids); assert!(slot < bids_size, 99); // assert bids size does not exceed 100 assert!(bids_size < 100, 0); let slot_bids = vector::borrow_mut(&mut roulette.bids, slot); vector::push_back(&mut slot_bids, signer::address_of(sender)); } public fun total_bid(): u64 acquires ResourceRoulette { // Make this more complex to support actual bidding let roulette = borrow_global(@resource_roulette); vector::length(&roulette.bids) } // Roll function to select a pseudorandom slot and pay out all signers who selected that slot public entry fun spin(sender: &signer) acquires ResourceRoulette { let roulette = ResourceRoulette::borrow_global_mut(); assert!(singer::address_of(sender) == roulette.owner, 98); let resource_vector_size = vector::length(&roulette.bids); let winning_slot = (0x1000 % resource_vector_size) as u8; let winners = vector::borrow(&roulette.bids, winning_slot); let num_winners = vector::length(&winners_vec); let balance_per_winner = total_bid() / num_winners as u64; let mut i = 0; while i < num_winners { let winner = vector::borrow(&winners_vec, i); let mut winnings = borrow_global_mut(winner); winnings.amount = winnings.amount + balance_per_winner; i = i + 1; }; } }","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 ResourceRoulette","id":"44","title":"💻 ResourceRoulette"},"45":{"body":"This section examines the standard library and framework that ships with Movement. Both are based on their Aptos namesakes. Disclaimer: there are many more useful modules in the standard library and framework. We will discuss some of them in this course and encourage you to explore them as you go.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » Movement Standard Library","id":"45","title":"Movement Standard Library"},"46":{"body":"Prints to a message to the console using a VM native func. The associated [debug] outputs are easiest to view when unit testing. module debug_demo::message { use std::string; use std::signer; use aptos_std::debug; struct MessageHolder has key { message: string::String, } public entry fun set_message(account: signer, message_bytes: vector) acquires MessageHolder { debug::print_stack_trace(); let message = string::utf8(message_bytes); let account_addr = signer::address_of(&account); if (!exists(account_addr)) { move_to(&account, MessageHolder { message, }); } else { let old_message_holder = borrow_global_mut(account_addr); old_message_holder.message = message; } } #[test(account = @0x1)] fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); debug::print
(&addr); set_message(account, b\"Hello, Blockchain\"); }\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::debug and aptos_std::debug","id":"46","title":"std::debug and aptos_std::debug"},"47":{"body":"A useful dynamically size collection with an aptos_std:: counterpart optimized for a large number of elements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::vector and aptos_std::big_vector","id":"47","title":"std::vector and aptos_std::big_vector"},"48":{"body":"An associative array. fun run_table(account: signer) { let t = table::new(); let key: u64 = 100; let error_code: u64 = 1; assert!(!table::contains(&t, key), error_code); assert!(*table::borrow_with_default(&t, key, &12) == 12, error_code); add(&mut t, key, 1); assert!(*table::borrow_with_default(&t, key, &12) == 1, error_code); move_to(&account, TableHolder{ t });\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_std::table","id":"48","title":"aptos_std::table"},"49":{"body":"This module defines the Option type and its methods to represent and handle an optional value. The implementation is based on a vector. fun option_contains() { let none = option::none(); let some = option::some(5); let some_other = option::some(6); assert!(option::contains(&some, &5), 0); assert!(option::contains(&some_other, &6), 1); assert!(!option::contains(&none, &5), 2); assert!(!option::contains(&some_other, &5), 3);\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::option","id":"49","title":"std::option"},"5":{"body":"In resource-oriented programming, like Move, the stack model is employed to manage data ownership and control access. Take for example the following unsafe C program. #include \n#include \n#include void printAndFree(char* data) { printf(\"Data: %s\\n\", data); free(data); // Function takes ownership and frees the memory\n} int main() { char* value = (char*)malloc(strlen(\"Hello\") + 1); strcpy(value, \"Hello\"); printAndFree(value); // Pass ownership of 'value' to the function // Attempt to access the value after it has been freed printf(\"Data after freeing: %s\\n\", value); // Unsafe access! return 0;\n} In Move, this kind of unsafe access would not be possible because of strict ownership conditions. Each function owns the resources it creates and is responsible for their lifecycle. This ownership model ensures that resources are properly managed and prevents unauthorized access or modification, bolstering the security of blockchain-based applications.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Stack Model Programming and Function Ownership","id":"5","title":"Stack Model Programming and Function Ownership"},"50":{"body":"A resource account is used to manage resources independent of an account managed by a user. This is is useful for building things like liquidity providers which we will discuss later in the course.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_framwork::resource_account","id":"50","title":"aptos_framwork::resource_account"},"51":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell, but only when cash out. Balances are tracked in a aptos_std::table. You can find it and instructions to run it examples/movement/resource_roulette.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 ResourceRoulette pt. 2","id":"51","title":"💻 ResourceRoulette pt. 2"},"52":{"body":"A tiny key value store for vector files. Implements store and load functionality using a aptos_framework::resource_account and a aptos_std::table. You can find it and instructions to run it examples/movement/mini_fs.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 MiniFs","id":"52","title":"💻 MiniFs"},"53":{"body":"This week treats with more advanced concepts in the Move language and focuses our Move development efforts on the Movement blockchain. This is also intended as an opportunity to practice and revisit concepts from Week 1.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Week 2: Advanced Move and Move for Movement","id":"53","title":"Week 2: Advanced Move and Move for Movement"},"54":{"body":"In this section we will examine Move's support for common type-level program models. Owing to the strictness of its programming model, many of the features found in modern programming languages are not available in Move. We conclude with a programming example, 💻 MoveNav , that implements a polymorphic navigation module using Move.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics, type constraints, and polymorphism","id":"54","title":"Generics, type constraints, and polymorphism"},"55":{"body":"Generics act as abstract stand-ins for concrete types and allow for type-independent code. A single function written with generics can be used for any type. In the Move language, generics can be applied to struct and function signatures. // source: https://move-language.github.io/move/generics.html\nfun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} struct Foo has copy, drop { x: T } let x = id(true); // ok!\nlet x = id(true); // error! true is not a u64 struct Foo has copy, drop { x: T } let foo = Foo { x: 0 }; // error! 0 is not a bool\nlet Foo
{ x } = foo; // error! bool is incompatible with address\nlet bar = Foo { x : true }; // ok!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics","id":"55","title":"Generics"},"56":{"body":"In Rust you can write code that composes traits to implement functionality similar to subtyping in other languages. trait Animal { fn make_sound(&self);\n} trait Fly { fn fly(&self);\n} trait Swim { fn swim(&self);\n} trait FlyingSwimmingAnimal: Animal + Fly + Swim { fn do_flying_swimming_stuff(&self) { self.make_sound(); self.fly(); self.swim(); }\n} struct Duck { name: String,\n} impl Animal for Duck { fn make_sound(&self) { println!(\"The duck {} says quack!\", self.name); }\n} impl Fly for Duck { fn fly(&self) { println!(\"The duck {} is flying.\", self.name); }\n} impl Swim for Duck { fn swim(&self) { println!(\"The duck {} is swimming.\", self.name); }\n} fn perform_actions(animal: &T) { animal.make_sound(); animal.fly(); animal.swim();\n} fn main() { let duck = Duck { name: String::from(\"Donald\"), }; perform_actions(&duck);\n} As part of the strictness of its programming model, Move does not support these constructs. Instead to achieve something similar to subtyping, it is often best to compose structs. That is, while you cannot establish an is relationship between types, you can establish a has relationship. This may be a more familiar model for those used to programming in C. module 0x42::Animal { use std::string; use std::debug; struct Animal { sound : string; name : string; } struct FlyingAnimal { flies : bool; speed : u8; animal : Animal; } struct Bird { flying_animal : FlyingAnimal; feather_description : string; } fun make_sound(animal : Animal){ debug::print(animal.sound); } fun bird_make_sound(bird : Bird){ make_sound(bird.flying_animal.animal); } } Importantly, however, you cannot compose types to provide bounds on generic functions. An equivalent of fn perform_actions(animal: &T) does not exist. Further below, we will discuss more advanced means of achieving similar subtyping and polymorphism. However, in most cases, you will be better off simply choosing a simpler programming model.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Move does not support subtyping or composable type constraints","id":"56","title":"Move does not support subtyping or composable type constraints"},"57":{"body":"copy: The copy ability allows for the type's value to be cloned. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. These abilites may be used to define type bounds for generic functions and structs. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} Importantly, in the publish_generic_box example above, the type T must also have the has and store abilities owing to Move's rules of ability composition: copy: All fields must have copy. drop: All fields must have drop. store: All fields must have store. key: All fields must have store.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The Four Type Abilities: copy, drop, store, and key","id":"57","title":"The Four Type Abilities: copy, drop, store, and key"},"58":{"body":"Storage polymorphism is the ability to index into global storage via a type parameter chosen at runtime. By leveraging storage polymorphism in combination with generics, Move developers can write generic algorithms, functions, and modules that can work with different resource types stored in the blockchain's storage. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} While not as flexible as general polymorphism found in some languages, Move's storage polymorphism can quickly compose complex and useful operations for the blockchain. The below is an example of function for adding liquidity from Movement's dex router. Under the hood, global storage polymorphism is being used to enable to the publication of generic coins. /// Add liquidity to pool `X`/`Y` with rationality checks.\n/// * `coin_x` - coin X to add as liquidity.\n/// * `min_coin_x_val` - minimum amount of coin X to add as liquidity.\n/// * `coin_y` - coin Y to add as liquidity.\n/// * `min_coin_y_val` - minimum amount of coin Y to add as liquidity.\n/// Returns remainders of coins X and Y, and LP coins: `(Coin, Coin, Coin>)`.\n///\n/// Note: X, Y generic coin parameters must be sorted.\npublic fun add_liquidity( coin_x: Coin, min_coin_x_val: u64, coin_y: Coin, min_coin_y_val: u64,\n): (Coin, Coin, Coin>) { assert!(coin_helper::is_sorted(), ERR_WRONG_COIN_ORDER); let coin_x_val = coin::value(&coin_x); let coin_y_val = coin::value(&coin_y); assert!(coin_x_val >= min_coin_x_val, ERR_INSUFFICIENT_X_AMOUNT); assert!(coin_y_val >= min_coin_y_val, ERR_INSUFFICIENT_Y_AMOUNT); let (optimal_x, optimal_y) = calc_optimal_coin_values( coin_x_val, coin_y_val, min_coin_x_val, min_coin_y_val ); let coin_x_opt = coin::extract(&mut coin_x, optimal_x); let coin_y_opt = coin::extract(&mut coin_y, optimal_y); let lp_coins = liquidity_pool::mint(coin_x_opt, coin_y_opt); (coin_x, coin_y, lp_coins)\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Storage polymorphism","id":"58","title":"Storage polymorphism"},"59":{"body":"In order to enforce type constraints at compile-time, unused type parameters can be marked as phantom type parameters. Arguments to phantom type parameters won't be considered when determining the abilities of the generic type. Thus, this eliminates the need for spurious ability annotations. Generics, along with storage polymorphism and phantom type parameters, offer flexibility, code reuse, and type safety. These features make it easier to create modular and reusable code components for safe contracts in the Move language. For instance, generics can be used to define generic data structures such as lists, maps, or queues that can store and manipulate values of any type. In addition, generics enable the creation of templatized algorithms which can operate on different types of data. // source: https://move-language.github.io/move/generics.html?highlight=phantom%20types#unused-type-parameters\nmodule 0x2::m { // Currency Specifiers struct Currency1 {} struct Currency2 {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_concrete(value: u64): Coin { Coin { value } }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Unused and phantom types","id":"59","title":"Unused and phantom types"},"6":{"body":"Resource-oriented programming languages like Move implement access restrictions at all levels of code execution. From the top-level contract to individual functions, access to resources is strictly controlled. This granular access control minimizes the risk of unauthorized operations and ensures that only authorized parties can interact with specific resources, promoting secure and auditable transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Access Restriction All the Way Down","id":"6","title":"Access Restriction All the Way Down"},"60":{"body":"💻 MoveNav implements Dijkstra's algorithm for navigating over a graph with different navigation types in move. We'll use a simple approach to domain modeling outlined below. // redacted version of examples/movement/MoveNav\nmodule 0x42::MoveNav { use std::vector; use std::option; use std::debug; struct Graph { nodes: vector, edges: vector, } struct Vector3 { x: u8, y: u8, z: u8, } struct Edge { source: u8, target: u8, weight: u8, } struct Navigation { graph: Graph, navigation_type: NavigationType, } struct NavigationType { name: string, speed: u8, } fun navigate(nav: Navigation, start: Vector3, end: Vector3): option::Option { debug::print(\"Navigating from \", start, \" to \", end); let nav_type = &nav.navigation_type; if nav_type.name == \"Walk\" { debug::print(\"Walking at speed \", nav_type.speed); // Perform walking navigation logic return option::None; } if nav_type.name == \"Run\" { debug::print(\"Running at speed \", nav_type.speed); // Perform running navigation logic return option::None; } if nav_type.name == \"Fly\" { debug::print(\"Flying at speed \", nav_type.speed); // Perform flying navigation logic return option::None; } else { debug::print(\"Unsupported navigation type\"); return option::None; } } fun set_graph(nav: &mut Navigation, graph: Graph) { nav.graph = graph; } fun set_navigation_type(nav: &mut Navigation, nav_type: NavigationType) { nav.navigation_type = nav_type; }\n} To dive into the project, please clone this book's repo, and navigate to examples/movement/MoveNav.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » 💻 MoveNav","id":"60","title":"💻 MoveNav"},"61":{"body":"The MSL specification provides for more advanced type-level constructs. For ambitious developers, these may be powerful contribution objectives!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The future of Move type programming","id":"61","title":"The future of Move type programming"},"62":{"body":"This section examines the safety features of Move in greater and more theoretical detail. There are no programming exercises designed for this section. It is primarily intended to motivate the usage of Move language in the context of blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Safety","id":"62","title":"Safety"},"63":{"body":"The Move Language was inspired by linear logic, a formal system of logic that was developed by Jean-Yves Girard in 1987. In linear logic, formulas were regarded as resources which could only be used once. Similarly, in the Move language, resources can only be moved between storage locations, never copied or dropped.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Linear logic","id":"63","title":"Linear logic"},"64":{"body":"Move's type system enables special safety guarantees for resources. It ensures that move resources can not be duplicated, reused, or implicitly discarded. Attempts to duplicate, reuse, or implicitly discard a resource will result in a bytecode verification error. Notwithstanding these unique safeguards, resources in the Move language possess the characteristics of regular program values. They can be stored in data structures, passed as arguments to procedures, and utilized in similar ways. module 0x42::LinearLogicExample { use std::vector; use std::debug; struct Token has drop { value: u8, } fun use_token(token: Token) { debug::print>(\"Using token.\"); // Perform operations with the token... } public fun main() { let token: Token; token = Token { value: 10 }; debug::print>(b\"Before use:\"); debug::print(token.value); use_token(token); debug::print(token.value); // Attempting to access `token` here would result in a compile-time error }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Move type system","id":"64","title":"Move type system"},"65":{"body":"The Move Prover is a formal verification tool specifically designed for the Move programming language. The Move Prover performs static analysis of Move programs, exploring all possible execution paths and applying various verification techniques. It can reason about program behaviors, ownership and borrowing rules, resource lifecycles, and other aspects of Move's type system and semantics. By leveraging the Move Prover, developers can gain increased confidence in the correctness and security of their Move smart contracts. This tool helps identify potential issues before deployment, reducing the risk of vulnerabilities, ensuring adherence to best practices, and promoting the development of robust and reliable blockchain applications.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » The Move Prover","id":"65","title":"The Move Prover"},"66":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Introduction to Smart Contracts","id":"66","title":"Introduction to Smart Contracts"},"67":{"body":"Long before blockchain technology, American cryptographer and programmer, Nick Szabo, proposed the idea of the smart contracts in 1996. At the time of his proposal, the distributed ledger did not exist, and thus his idea could be not built upon. The first cryptocurrency, Bitcoin, was created in 2008, which helped to motivate the development of smart contracts. In 2013, Ethereum became the first platform to host smart contracts. Now, there are plenty of platforms that are used to bring Szabo's idea to life. When it comes to implementing smart contracts, resource orientation plays a crucial role in ensuring security, efficiency, and reliability. Resource-oriented programming languages, such as Move, have emerged as a powerful tool for developing smart contracts on blockchain platforms. Move, specifically designed for the Libra blockchain, places a strong emphasis on resource-oriented programming principles, which have proven to be highly beneficial in the context of smart contracts. Here's why resource orientation is important in languages like Move: Security and Safety: Smart contracts often handle valuable digital assets, and any vulnerability or flaw in the contract's code can lead to disastrous consequences, including financial losses. Resource-oriented programming in Move enforces strict ownership and borrowing rules, ensuring that resources are properly managed and protected. The language's type system guarantees the absence of common vulnerabilities like reentrancy and enables static verification of contracts, minimizing the risk of critical bugs and making smart contracts more secure. Efficient Resource Management: In traditional programming languages, objects or data structures are often copied or cloned when passed between functions or contracts. This can lead to unnecessary memory consumption and performance bottlenecks. Resource-oriented programming in Move takes a different approach. Resources are moved between functions or contracts, rather than being copied, ensuring efficient use of memory and reducing the risk of unintended side effects. Move's ownership model allows for fine-grained control over resource lifecycles, enabling optimized resource management within smart contracts. Immutable and Transparent State: Blockchain technology inherently involves a distributed and immutable ledger that maintains the state of smart contracts. Resource-oriented programming aligns well with these characteristics, as Move enforces immutability for resources. Once a resource is created, its state cannot be modified directly, ensuring the integrity and consistency of the contract's data. This immutability also contributes to the transparency of the blockchain, as the entire history of resource states can be audited and verified by any participant. Concurrent and Parallel Execution: In decentralized blockchain networks, multiple transactions can be executed concurrently, requiring smart contracts to handle concurrent access to shared resources. Resource-oriented programming provides a solid foundation for handling concurrent execution. Move's borrowing mechanism allows for controlled and safe concurrent access to resources, preventing data races and ensuring deterministic execution. This capability enables scalable and efficient execution of smart contracts in a distributed environment. Upgradeability and Evolution: Smart contracts often need to evolve and adapt over time to incorporate new features, fix bugs, or address changing business requirements. Resource-oriented programming facilitates upgradability by decoupling the contract's data from its logic. By defining the behavior of resources separately from the contract's code, Move allows for smooth migration and upgrade of contracts while preserving the integrity of existing data and ensuring backward compatibility. Resource orientation in languages like Move plays a pivotal role in the development of secure, efficient, and reliable smart contracts. By enforcing ownership and borrowing rules, enabling efficient resource management, ensuring immutability and transparency of state, supporting concurrent execution, and facilitating upgradability, Move empowers developers to build robust and future-proof smart contracts on the blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Origins of smart contracts","id":"67","title":"Origins of smart contracts"},"68":{"body":"We've implemented a multi-contract fibonacci number computation in Solidity, Anchor, and Movement to illustrate the benefits of the move language and Movement. We encourage to run and compare the source for each. We've included devcontainers for Solidity and Anchor in the associated repo.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Comparison: 💻 MulticontractFib","id":"68","title":"Comparison: 💻 MulticontractFib"},"69":{"body":"Solidity is high-level, object-oriented programming language used to implement smart contracts. It is the primary programming language used on the Ethereum blockchain. To work with the Solidity implementation, use the solidity devcontainer and work from the examples/solidity/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Solidity","id":"69","title":"Solidity"},"7":{"body":"Type linearity is a crucial aspect of resource-oriented programming that enforces the linear use of resources. In Move, resources have linear types, meaning they can only be consumed or moved, not duplicated. This feature prevents resource duplication, reduces memory consumption, and eliminates the risk of double-spending, ensuring the integrity and accuracy of transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Type Linearity and Ownership","id":"7","title":"Type Linearity and Ownership"},"70":{"body":"Anchor is Solana's Sealevel runtime framework. It provides several developer tools for writing smart contracts in order to simplify the process and help developers to focus on their product. To work with the Anchor implementation, use the anchor devcontainer and work from the examples/anchor/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Anchor","id":"70","title":"Anchor"},"71":{"body":"This is us! To work with the Anchor implementation, use the movement devcontainer and work from the examples/movement/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Movement","id":"71","title":"Movement"},"72":{"body":"This section examines testing strategies for Move smart contracts on Movement. We will cover both automated and manual strategies for testing functionality.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing","id":"72","title":"Testing"},"73":{"body":"movement init --network testnet When building and testing an application, you will want to work against either the Movement testnet or a local network. The movement devcontainer is equipped with the movement CLI and uses docker-compose to start a local network; both options are available without additional setup when working with the devcontainer. When beginning a project, run movement init and specify either testnet or local. The first profile you create will be called default. To create a new profile run movement init --profile . You can then specify which profile you would like to use in various commands by --profile , e.g., move run --profile default .... You can inspect the details of all of your profiles at .movement/config.yaml in your working directory. # config.yaml\n---\nprofiles: default: private_key: \"0x23978a9c5a8c9291c3cb0283f5c4eee243f7ae81d62b3d3243aa06ac0fcde2cf\" public_key: \"0xf6ad6834565bda0f3fa8a093311f1a1308855773d2108cd04dd770da9c078ecd\" account: 29f06cb1f4139484e8c3dcd9f915ad39acb2aee9a8e8064ee48cfc255ecf10ca rest_url: \"https://fullnode.devnet.aptoslabs.com/\" faucet_url: \"https://faucet.devnet.aptoslabs.com/\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Movement profile configuration","id":"73","title":"Movement profile configuration"},"74":{"body":"Movement's CLI movement provides an aptos-like interface for building and testing Move smart contracts. The built-in testing functionality is best suited for unit testing. You can define tests in the same module or separately. // hello_blockchain.move\nmodule hello_blockchain::message { use std::error; use std::signer; use std::string; use aptos_framework::account; use aptos_framework::event; // ... #[test(account = @0x1)] public entry fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( get_message(addr) == string::utf8(b\"Hello, Blockchain\"), ENO_MESSAGE ); }\n} // hello_blockchain_test.move\n#[test_only]\nmodule hello_blockchain::message_tests { use std::signer; use std::unit_test; use std::vector; use std::string; use hello_blockchain::message; fun get_account(): signer { vector::pop_back(&mut unit_test::create_signers_for_testing(1)) } #[test] public entry fun sender_can_set_message() { let account = get_account(); let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); message::set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( message::get_message(addr) == string::utf8(b\"Hello, Blockchain\"), 0 ); }\n} You can then run tests for the package containing modules from the movement CLI. movement move test --named-addresses hello_blockchain=default For advanced use of movement for automated testing, such as coverage, see the movement CLI documentation .","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Automated testing","id":"74","title":"Automated testing"},"75":{"body":"Often, automated unit testing will be insufficient to determine that your smart contracts are ready for production. You will want to apply a set of end-to-end strategies to ensure smart contract quality. At the moment, all of these strategies are manual; however, automation can be built on-top of them. Contribution {: .contributor-block} Help us develop better tools for automated e2e and integration testing.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Manual testing","id":"75","title":"Manual testing"},"76":{"body":"There three key instructions for manual testing using movement: movement move publish: publishes modules and scripts to the Movement blockchain. movement move run: runs a module or script. movement account list: lists resources values. When testing manually, you will typically adopt a flow of publish->run->list. In the examples provided with this book's repository, you will commonly see bash scripts for running and testing Movement smart contract that orchestrate these three commands. The following is an example from our hello_blockchain contract: #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\" begin \"Setting hello_blockchain message to 'goodbye!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:goodbye!\nfinish \"Set hello_blockchain message to 'goodbye'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » With movement","id":"76","title":"With movement"},"77":{"body":"In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities. Share {: .share-block} Share your semi-automated workflows with us!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Semi-automation","id":"77","title":"Semi-automation"},"78":{"body":"In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks, stubs, and state-based simulation","id":"78","title":"Mocks, stubs, and state-based simulation"},"79":{"body":"Mocks and stubs are both techniques used to simulate or replace certain components of a system being tested. A mock is a fake implementation of a method or an object, meant to simulate its real behavior. Stubs, on the other hand, are simplified implementations that do not imitate the real behavior. Instead, stubs produce a predefined response to a specific method call or input. Thus, mocks verify the behavior of code and stubs verify the state of the code. Some of the modules in the standard library and framework will be suitable for mocking. The example below uses a resource account function to mock a specialized publishing process. A good strong understanding of the standard library can result in much cleaner solutions to mocking problems. #[test_only]\npublic entry fun set_up_test(origin_account: &signer, resource_account: &signer) { use std::vector; account::create_account_for_test(signer::address_of(origin_account)); // create a resource account from the origin account, mocking the module publishing process resource_account::create_resource_account(origin_account, vector::empty(), vector::empty()); init_module(resource_account);\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks and stubs","id":"79","title":"Mocks and stubs"},"8":{"body":"Double-spending is a significant concern in decentralized systems where digital assets are involved. Resource-oriented programming, like Move, mitigates the risk of double-spending by enforcing strict ownership and borrowing rules. Resources can only be moved or consumed once, preventing malicious actors from creating multiple transactions using the same resource and effectively eliminating the possibility of double-spending attacks.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Double-Spending","id":"8","title":"Double-Spending"},"80":{"body":"State-based simulation is a testing technique that focuses on verifying a program based the correctness of its state transitions. First, one must identify and define the states that the program can be in. Next, the events or actions that trigger a transition between states must be defined. Using this information, proper test cases should be generated to explore different state transitions and scenarios.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » State-based simulation","id":"80","title":"State-based simulation"},"81":{"body":"Beyond the test and test_only directives, Movement does not not provide any additional ergonomics for mocking, stubbing, or state-based simulation. However, opting for a common environment module may be suitable for more complex cases. The example below uses storage polymorphism to implement a common environment store. address 0x42::Environment { // Unused type for global storage differentiation struct VariableA {} struct VariableB {} // A generic variable type that can be instantiated with different types struct VariableStore has store { value: V, } // Set the value of a variable public fun set_variable(value: V) acquires VariableStore { move_to>(account, VariableSore { value }) } // Get the value of a variable public fun get_variable(): V acquires VariableStore { borrow_global>(addr).value }\n} When setting up your tests, you would then want to run something like the below. You'll likely want to simply create a type bridge in the module above to enable external sets from the CLI. #!/bin/bash -e # set environment\nbegin \"Setting environment to slow...\"\necho \"y\" | movement move run --function-id default::message::set_slow_variable --args string:slow\nfinish \"Set environment to slow!\" Contribution {: .contributor-block} Help us develop mocking and stubbing tools for Movement.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » For movement","id":"81","title":"For movement"},"82":{"body":"Ville Sundell has already provided an expert overview of useful design patterns in Move. As this book improves, we may include some of our own here. However, for now, we defer to Ville.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Design Patterns » Design Patterns","id":"82","title":"Design Patterns"},"83":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Smart Contracts development and staging","id":"83","title":"Smart Contracts development and staging"},"84":{"body":"When building smart contracts for movement you can use both the move client and movement itself.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Development","id":"84","title":"Development"},"85":{"body":"The move CLI is a suitable tool for early and primitive development. You will not have access to the same onchain resources as when working with the movement CLI, such as access to our DEX. However, you will be able to use the move sandbox to build and run contracts. To make sure you are building with out standard library, include the following in your Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » move","id":"85","title":"move"},"86":{"body":"The movement CLI provides an aptos-like interface for running Move language scripts and modules. For more details see the movement CLI docs. When using movement in its default configuration, you will test and run contracts against our testnet. This is ideal for most Movement development.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » movement","id":"86","title":"movement"},"87":{"body":"The best way to publicly stage smart contracts for Movement is simply to us a movement CLI. If you are interested in a more private staging environment, you may use the movement CLI with the provided movement devcontainer to compose and stage against a local network. Contribution {: .contributor-block} Help us develop better tools for movement staging!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Staging","id":"87","title":"Staging"},"88":{"body":"M1 is Movement's first L1. This week is be all about building applications, particular DeFi applications, with Movement.","breadcrumbs":"Week 3: M1 and DeFi Applications » Week 3: M1 and DeFi Applications","id":"88","title":"Week 3: M1 and DeFi Applications"},"89":{"body":"At the time of writing, only the M1 testnet is available. To set up for deployment you only need to make sure you have a testnet profile configured. movement init --network testnet You may then use the movement CLI to publish your package. movement move publish --named-addresses hello_blockchain=default We encourage however to take a look at aptos_framework::resource_account and aptos_framework::resource_group for more advanced publication options.","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » Deploying on M1","id":"89","title":"Deploying on M1"},"9":{"body":"Virtual machines play a crucial role in the blockchain ecosystem, particularly in executing and enforcing the logic of smart contracts. They ensure that all nodes on the blockchain network run the same logic, enabling verification and consensus among participants.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual machines and the blockchain","id":"9","title":"Virtual machines and the blockchain"},"90":{"body":"We encourage you to checkout examples/movement/multicontract_fib for an easy to inspect deployment. Once you've deployed, simply run the command below to check out the on-chain resources. movement account list --query resources --account default","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » 💻 MulticontractFib","id":"90","title":"💻 MulticontractFib"},"91":{"body":"This section provides a high-level overview of common blockchain concerns and points to features of Movement or modules from the Movement standard library that can be used to help.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Security","id":"91","title":"Security"},"92":{"body":"When working with M1 you will be able benefit from Avalanche's adaptive security and Move's strict programming model to avoid many of the vulnerabilities you would commonly encounter in smart contract development. You should, of course, remain aware of the vectors of attack.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » M1","id":"92","title":"M1"},"93":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Attack Surface","id":"93","title":"Attack Surface"},"94":{"body":"Network layer The network layer of a blockchain application is susceptible to various attacks, such as distributed denial-of-service (DDoS) attacks, eclipse attacks, and Sybil attacks. These attacks can disrupt the network's functionality and compromise its security. Consensus The consensus mechanism used in a blockchain application can be targeted by attackers through attacks like 51% attacks, where they gain majority control over the network's computing power and manipulate transactions or block validation. Thankfully, Avalanche consensus--which underpins movement--is designed to resist various attacks, including sybil attacks, distributed denial-of-service (DDoS) attacks, and collusion attacks. Its probabilistic nature ensures that the consensus outcome converges to the desired state, even when the network is under attack. Blockchain protocol: The underlying blockchain protocol may have vulnerabilities that can be exploited by attackers. Weaknesses in the protocol's cryptographic algorithms, consensus algorithms, or validation mechanisms can lead to security breaches.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Blockchain","id":"94","title":"Blockchain"},"95":{"body":"Environment Smart contracts rely on the execution environment in which they run. Insecure environments can expose smart contracts to attacks, such as sandbox escapes or unauthorized access to system resources. External dependencies Smart contracts often interact with external systems or data sources. These dependencies can introduce security risks, such as malicious data feeds or vulnerabilities in the connected systems. Code vulnerabilities Flaws in the code of smart contracts can lead to various vulnerabilities, including reentrancy attacks, integer overflow/underflow, and logic errors. These vulnerabilities can be exploited to manipulate contract behavior or steal funds. Thankfully, thanks to its type-system, resource-orientation, and linear programming model, the Move language makes it difficult to publish code with many of the common smart contract vulnerabilities. Upgradability The ability to upgrade smart contracts introduces potential security risks. Unauthorized or malicious upgrades can compromise the integrity of the contract or introduce vulnerabilities that can be exploited. Thankfully, the Move language introduces the concept of modules, which are self-contained units of code that encapsulate the functionality of smart contracts. Unlike traditional smart contracts, Move modules can be upgraded without disrupting the entire system or requiring complex migration processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Smart contracts","id":"95","title":"Smart contracts"},"96":{"body":"Integration risks Decentralized applications (dApps) often integrate with external services or APIs. Insecure integration points can expose dApps to security risks, such as unauthorized data access or injection of malicious code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » dApps","id":"96","title":"dApps"},"97":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Handling User Data","id":"97","title":"Handling User Data"},"98":{"body":"Blockchain applications should follow the principle of data minimization, collecting only the necessary data and avoiding the storage of sensitive information that is not required for the application's functionality.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Data minimization","id":"98","title":"Data minimization"},"99":{"body":"Proper access control mechanisms should be implemented to ensure that only authorized individuals or entities can access sensitive user data. This includes authentication, authorization, and secure role-based access control. Move uses an account-based ownership model where each account has its own address and associated permissions. Access control can be enforced at the account level, ensuring that only authorized users can perform specific actions.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Access control","id":"99","title":"Access control"}},"length":151,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":9,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}},"x":{"1":{"0":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"139":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"7":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":3.0},"127":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":4,"docs":{"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"133":{"tf":1.4142135623730951}}},"5":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"6":{"df":2,"docs":{"127":{"tf":1.0},"49":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}},"9":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"102":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":3.1622776601683795},"115":{"tf":1.7320508075688772},"118":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.4142135623730951},"121":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":3.605551275463989},"79":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"31":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"104":{"tf":1.0},"58":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"114":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"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":8,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"131":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":2.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"z":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"131":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"45":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"48":{"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":{}}},"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"t":{"df":11,"docs":{"106":{"tf":2.23606797749979},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"8":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":3.7416573867739413},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"14":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"102":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":1,"docs":{"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"106":{"tf":1.0},"114":{"tf":2.0},"129":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"1":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"39":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"142":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"141":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"56":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"58":{"tf":1.0}}},"df":51,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"60":{"tf":1.0},"76":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"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":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"121":{"tf":2.0},"125":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"121":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":3,"docs":{"109":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"0":{"tf":1.7320508075688772},"109":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":2.0},"50":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":7,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"108":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":2.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"115":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"3":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"67":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"121":{"tf":2.23606797749979},"124":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"58":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"77":{"tf":1.0}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.23606797749979},"21":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"137":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"109":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":3.1622776601683795},"31":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"142":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"32":{"tf":1.7320508075688772},"47":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"73":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"103":{"tf":1.0},"114":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"146":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"150":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":6,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":5,"docs":{"125":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"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":2,"docs":{"142":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"146":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"114":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"131":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"142":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":2.0},"137":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"126":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"142":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"67":{"tf":2.0}}},"df":37,"docs":{"10":{"tf":2.0},"104":{"tf":2.6457513110645907},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":4.47213595499958},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.3166247903554}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"118":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"y":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"127":{"tf":1.0},"59":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"t":{"a":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"46":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"i":{"df":12,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"88":{"tf":1.4142135623730951}},"n":{"df":12,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":38,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"58":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"136":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"67":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"86":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"21":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"140":{"tf":1.0},"142":{"tf":1.0},"45":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"39":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"7":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"81":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"t":{"df":3,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"v":{"df":3,"docs":{"142":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"71":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"9":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"142":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"138":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"125":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.0}},"i":{"df":7,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"133":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"133":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"56":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"142":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"56":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"145":{"tf":1.0},"70":{"tf":1.0}},"s":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}}},"df":3,"docs":{"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"106":{"tf":1.0}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"142":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"5":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"121":{"tf":3.0},"122":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":24,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"116":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"19":{"tf":1.0},"31":{"tf":2.23606797749979},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"df":2,"docs":{"120":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"142":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0}}}}}}},"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"l":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"76":{"tf":3.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"76":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}},"df":3,"docs":{"142":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"133":{"tf":1.0},"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":{}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"85":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"67":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":4,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.7320508075688772},"142":{"tf":1.0},"80":{"tf":1.0},"98":{"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":4,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":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":{"104":{"tf":1.0},"73":{"tf":1.7320508075688772},"89":{"tf":1.0}},"i":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"56":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"29":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":7,"docs":{"11":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"n":{"d":{"df":4,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"139":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"87":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"74":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"41":{"tf":1.0},"95":{"tf":2.0}},"t":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}},"p":{"df":3,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":10,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"52":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"76":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"111":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"2":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"y":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"126":{"tf":1.0},"132":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"104":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"45":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"23":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.0},"95":{"tf":1.0}}}},"df":1,"docs":{"109":{"tf":1.0}}},"k":{"df":3,"docs":{"101":{"tf":1.0},"135":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"106":{"tf":1.0},"121":{"tf":2.449489742783178},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"126":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"114":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":2.23606797749979},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":2.0},"125":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":2.0},"67":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"m":{"1":{"df":4,"docs":{"116":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"67":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"121":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"21":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"113":{"tf":1.0},"145":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"76":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":2.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"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":{"146":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":1,"docs":{"52":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"6":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":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":{"121":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"54":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":30,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.6457513110645907},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":65,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"104":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.7320508075688772},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"88":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":2.23606797749979},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.8284271247461903},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"74":{"tf":2.23606797749979},"76":{"tf":3.605551275463989},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"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":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"68":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":2.0},"147":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"w":{"df":6,"docs":{"104":{"tf":2.0},"138":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":2,"docs":{"110":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"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":{"c":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"81":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"94":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"146":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"44":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.449489742783178},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"35":{"tf":2.23606797749979},"74":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":4,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":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":{"110":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}},"g":{"df":1,"docs":{"127":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"113":{"tf":1.0},"17":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"23":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"138":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"41":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"31":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"81":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"130":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"141":{"tf":1.0},"145":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"111":{"tf":1.0},"67":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"116":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"146":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"79":{"tf":1.0}},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":3.3166247903554},"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.8284271247461903},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}},"m":{"df":2,"docs":{"117":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":15,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"150":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"130":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":2.0}}}},"i":{"d":{"df":35,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":17,"docs":{"104":{"tf":1.7320508075688772},"115":{"tf":1.0},"121":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"104":{"tf":1.0},"39":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"d":{"df":2,"docs":{"133":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"122":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"118":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"32":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"118":{"tf":1.0},"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"112":{"tf":1.0},"140":{"tf":1.0},"21":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"29":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":4.358898943540674},"67":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"23":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":4.69041575982343},"7":{"tf":2.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.8284271247461903},"51":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"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":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"109":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"105":{"tf":2.0},"137":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.0},"51":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"42":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"121":{"tf":1.0},"142":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":4,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"127":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"120":{"tf":1.0},"21":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"81":{"tf":2.449489742783178},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":2.23606797749979},"55":{"tf":1.0}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":13,"docs":{"104":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"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":{"105":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"55":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"10":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"56":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"140":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":2.23606797749979}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":1.0},"142":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":2.0},"44":{"tf":1.0},"67":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"56":{"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":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"56":{"tf":2.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"31":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":3,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"140":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":2,"docs":{"138":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":2.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"138":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":2.23606797749979}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":5,"docs":{"48":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":16,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":3.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"138":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"145":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"114":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"l":{"df":1,"docs":{"113":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":3.1622776601683795},"64":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}},"df":23,"docs":{"127":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":3.605551275463989},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"81":{"tf":2.0},"95":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.6457513110645907},"64":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"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":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"0":{"tf":1.0},"142":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"114":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"115":{"tf":1.0},"95":{"tf":1.0}}}}},"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":2,"docs":{"55":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"121":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"148":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"109":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":73,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"142":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"55":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"81":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"104":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"46":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0}}},"v":{"df":4,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"140":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"141":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"137":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":16,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":2.8284271247461903},"58":{"tf":2.0},"60":{"tf":1.0}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":7,"docs":{"104":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"60":{"tf":1.0},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"r":{"df":1,"docs":{"133":{"tf":1.0}}},"v":{"df":4,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}}},"z":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":9,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}},"x":{"1":{"0":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"139":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"7":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":3.0},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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.4142135623730951},"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":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":41,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.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},"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}}},"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":47,"docs":{"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.7320508075688772},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"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}}},"5":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"6":{"df":2,"docs":{"127":{"tf":1.0},"49":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}},"9":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":3.0},"57":{"tf":2.8284271247461903},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"102":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":2.0},"114":{"tf":3.3166247903554},"115":{"tf":2.0},"118":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.4142135623730951},"121":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":3.605551275463989},"79":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"31":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"114":{"tf":2.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"104":{"tf":1.0},"58":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"114":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":36,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"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.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"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},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"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":8,"docs":{"100":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"131":{"tf":1.0},"23":{"tf":2.0}}},"df":0,"docs":{},"w":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":2.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"z":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":49,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"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.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"131":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"45":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"48":{"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":{}}},"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"t":{"df":11,"docs":{"106":{"tf":2.23606797749979},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":2.0}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"8":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":3.7416573867739413},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"14":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"102":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":1,"docs":{"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"106":{"tf":1.0},"114":{"tf":2.0},"129":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}},"i":{"c":{"df":18,"docs":{"1":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"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},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"39":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"142":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"141":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"56":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"58":{"tf":1.0}}},"df":52,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"60":{"tf":1.0},"76":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"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":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"121":{"tf":2.0},"125":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"121":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"139":{"tf":1.7320508075688772}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":3,"docs":{"109":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"0":{"tf":2.23606797749979},"109":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":7,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"108":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":3.0},"115":{"tf":2.6457513110645907},"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"3":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"67":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":2.0}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"121":{"tf":2.23606797749979},"124":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"58":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"77":{"tf":1.0}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.449489742783178},"21":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"137":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"109":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":3.3166247903554},"31":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.23606797749979},"142":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"32":{"tf":1.7320508075688772},"47":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"73":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.7320508075688772},"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},"114":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"146":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"150":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":6,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":5,"docs":{"125":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"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":2,"docs":{"142":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"146":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"114":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"131":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"142":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":2.0},"137":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"126":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"142":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"67":{"tf":2.0}}},"df":38,"docs":{"10":{"tf":2.23606797749979},"104":{"tf":2.6457513110645907},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":4.69041575982343},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.4641016151377544}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"118":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"y":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"127":{"tf":1.0},"59":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"a":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"46":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"144":{"tf":2.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"i":{"df":45,"docs":{"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":2.23606797749979},"117":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":12,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":17,"docs":{"103":{"tf":1.7320508075688772},"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},"144":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":2.0},"94":{"tf":1.0}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":39,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"58":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"136":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"67":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"86":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"21":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"140":{"tf":1.0},"142":{"tf":1.0},"45":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":2.0}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"39":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"7":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"81":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"t":{"df":3,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"v":{"df":3,"docs":{"142":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"71":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"9":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"142":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"138":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"124":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"125":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.0}},"i":{"df":7,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"133":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"133":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"56":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"142":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"56":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"145":{"tf":1.0},"70":{"tf":1.0}},"s":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}}},"df":3,"docs":{"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"106":{"tf":1.0}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"142":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"121":{"tf":3.0},"122":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":24,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"116":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.7320508075688772},"19":{"tf":1.0},"31":{"tf":2.449489742783178},"36":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"df":2,"docs":{"120":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":2.23606797749979},"114":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"142":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.7320508075688772},"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}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0}}}}}}},"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"l":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"76":{"tf":3.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"76":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}},"df":3,"docs":{"142":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"133":{"tf":1.0},"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":{}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"85":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.7320508075688772},"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"67":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":4,"docs":{"128":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.7320508075688772},"142":{"tf":1.0},"80":{"tf":1.0},"98":{"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":4,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":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":{"104":{"tf":1.0},"73":{"tf":1.7320508075688772},"89":{"tf":1.0}},"i":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"56":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"29":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":7,"docs":{"11":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"n":{"d":{"df":4,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"139":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"87":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"74":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"41":{"tf":1.0},"95":{"tf":2.0}},"t":{"df":59,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"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},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}},"p":{"df":3,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":10,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"52":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"76":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"111":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"2":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"y":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"132":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"104":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"14":{"tf":1.0},"45":{"tf":2.23606797749979},"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},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"23":{"tf":1.0},"63":{"tf":2.0},"7":{"tf":2.23606797749979},"95":{"tf":1.0}}}},"df":1,"docs":{"109":{"tf":1.0}}},"k":{"df":3,"docs":{"101":{"tf":1.0},"135":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"106":{"tf":1.0},"121":{"tf":2.449489742783178},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"126":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"114":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":2.23606797749979},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":2.0},"125":{"tf":2.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"67":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"m":{"1":{"df":45,"docs":{"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.4142135623730951},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"67":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.7320508075688772},"21":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":2.0},"30":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"113":{"tf":1.0},"145":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"76":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":2.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"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":{"146":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"6":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":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":{"121":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":3.0},"81":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"132":{"tf":1.7320508075688772},"23":{"tf":2.0},"5":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":31,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"39":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":94,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":2.23606797749979},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":2.6457513110645907},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"3":{"tf":2.449489742783178},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"65":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951},"67":{"tf":3.4641016151377544},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"88":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":109,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.0},"10":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"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.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.0},"74":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":3.872983346207417},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":2.6457513110645907},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"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":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"68":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":2.0},"147":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"w":{"df":6,"docs":{"104":{"tf":2.0},"138":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.0},"11":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":2,"docs":{"110":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"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":{"c":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"81":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"94":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"146":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"44":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.6457513110645907},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":2.0},"21":{"tf":1.0},"35":{"tf":2.449489742783178},"74":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":4,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"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},"114":{"tf":1.0},"82":{"tf":2.0}}}}}}},"y":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":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":{"110":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}},"g":{"df":1,"docs":{"127":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"113":{"tf":1.0},"17":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.8284271247461903},"23":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"138":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"41":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"130":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"141":{"tf":1.0},"145":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":2.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"111":{"tf":1.0},"67":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"116":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"146":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"79":{"tf":1.0}},"t":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":3.4641016151377544},"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":2.0},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.8284271247461903},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}},"m":{"df":2,"docs":{"117":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":23,"docs":{"133":{"tf":2.23606797749979},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":2.23606797749979}}}},"i":{"d":{"df":35,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":17,"docs":{"104":{"tf":1.7320508075688772},"115":{"tf":1.0},"121":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"104":{"tf":1.0},"39":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"d":{"df":2,"docs":{"133":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"122":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"118":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"32":{"tf":2.23606797749979},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"118":{"tf":1.0},"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"112":{"tf":1.0},"140":{"tf":1.0},"21":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"29":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":14,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":4.47213595499958},"67":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"23":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":4.69041575982343},"7":{"tf":2.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.4142135623730951}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"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":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"109":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"131":{"tf":1.0},"132":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"105":{"tf":2.23606797749979},"137":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.0},"51":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"121":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"59":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"36":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"42":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"121":{"tf":1.0},"142":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":4,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"127":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"120":{"tf":1.0},"21":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"81":{"tf":2.449489742783178},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":2.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":2.449489742783178},"55":{"tf":1.0}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":13,"docs":{"104":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"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":{"105":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"55":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":2.23606797749979},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":4.242640687119285},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"56":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"140":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.6457513110645907}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":1.0},"142":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":2.23606797749979},"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},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":2.23606797749979},"44":{"tf":1.0},"67":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"56":{"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":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"56":{"tf":2.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"31":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"140":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":2,"docs":{"138":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":13,"docs":{"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":2.23606797749979}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":5,"docs":{"48":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":16,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"138":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"145":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"114":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"l":{"df":1,"docs":{"113":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":3.3166247903554},"64":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}},"df":23,"docs":{"127":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":2.23606797749979},"57":{"tf":2.6457513110645907},"58":{"tf":2.0},"59":{"tf":3.872983346207417},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"81":{"tf":2.0},"95":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.6457513110645907},"64":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"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":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"0":{"tf":1.0},"142":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"114":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"115":{"tf":1.0},"95":{"tf":1.0}}}}},"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":2,"docs":{"55":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"121":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"148":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"109":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":73,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"142":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"55":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"81":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"104":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"46":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0}}},"v":{"df":4,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":151,"docs":{"0":{"tf":1.0},"1":{"tf":2.23606797749979},"10":{"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},"11":{"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},"12":{"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},"132":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"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},"15":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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},"7":{"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":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"140":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"141":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"137":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":16,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":2.8284271247461903},"58":{"tf":2.0},"60":{"tf":1.0}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":7,"docs":{"104":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"60":{"tf":1.0},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"r":{"df":1,"docs":{"133":{"tf":1.0}}},"v":{"df":4,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}}},"z":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":2.23606797749979}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"2":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"4":{"df":1,"docs":{"133":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"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":{"128":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"119":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"112":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"102":{"tf":1.0}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"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":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"57":{"tf":1.0}}}},"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":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"m":{"1":{"df":3,"docs":{"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"126":{"tf":1.0}},"r":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"132":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"68":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"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":{"115":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"130":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"49":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"56":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"133":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"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":["Prologue.html#building-with-movement","week_1/week_1.html#week-1-introduction-to-move-and-movement","week_1/Inro_to_move.html#introduction-to-move-and-movement","week_1/Inro_to_move.html#libradiem","week_1/Inro_to_move.html#resource-orientation-and-the-blockchain","week_1/Inro_to_move.html#stack-model-programming-and-function-ownership","week_1/Inro_to_move.html#access-restriction-all-the-way-down","week_1/Inro_to_move.html#type-linearity-and-ownership","week_1/Inro_to_move.html#double-spending","week_1/Inro_to_move.html#virtual-machines-and-the-blockchain","week_1/Inro_to_move.html#smart-contracts-nodes-running-the-same-logic","week_1/Inro_to_move.html#verification-nodes-talking-about-running-the-same-logic","week_1/Inro_to_move.html#virtual-machine-makes-sure-the-same-logic-is-the-same-logic","week_1/Inro_to_move.html#move-virtual-machines","week_1/Inro_to_move.html#limitations-and-movement","week_1/Developer_setup.html#developer-setup","week_1/Developer_setup.html#the-move-ecosystem","week_1/Developer_setup.html#virtual-machines","week_1/Developer_setup.html#clis","week_1/Developer_setup.html#package-managers","week_1/Developer_setup.html#ide","week_1/Developer_setup.html#our-setup","week_1/Basic_move_syntax.html#basic-move-syntax","week_1/Basic_move_syntax.html#allocation-and-the-move-memory-model","week_1/Basic_move_syntax.html#expressions-and-control-flow","week_1/Basic_move_syntax.html#expressions","week_1/Basic_move_syntax.html#if","week_1/Basic_move_syntax.html#while-and-loop","week_1/Basic_move_syntax.html#types","week_1/Basic_move_syntax.html#primitives","week_1/Basic_move_syntax.html#abilities","week_1/Basic_move_syntax.html#generic-and-behavior","week_1/Basic_move_syntax.html#resources-references-and-mutation","week_1/Basic_move_syntax.html#misc-syntax","week_1/Module_and_build_system.html#modules-and-build-system","week_1/Module_and_build_system.html#packages","week_1/Module_and_build_system.html#program-types","week_1/Module_and_build_system.html#modules","week_1/Module_and_build_system.html#scripts","week_1/Module_and_build_system.html#building","week_1/Module_and_build_system.html#named_addresses","week_1/Debugging_basics.html#debugging-basic-smart-contracts","week_1/Debugging_basics.html#-helloworld","week_1/Debugging_basics.html#-fib","week_1/Debugging_basics.html#-datastructures","week_1/Debugging_basics.html#-resourceroulette","week_1/Movement_standard_library.html#movement-standard-library","week_1/Movement_standard_library.html#stddebug-and-aptos_stddebug","week_1/Movement_standard_library.html#stdvector-and-aptos_stdbig_vector","week_1/Movement_standard_library.html#aptos_stdtable","week_1/Movement_standard_library.html#stdoption","week_1/Movement_standard_library.html#aptos_framworkresource_account","week_1/Movement_standard_library.html#-resourceroulette-pt-2","week_1/Movement_standard_library.html#-minifs","week_2/week_2.html#week-2-advanced-move-and-move-for-movement","week_2/Generics.html#generics-type-constraints-and-polymorphism","week_2/Generics.html#generics","week_2/Generics.html#move-does-not-support-subtyping-or-composable-type-constraints","week_2/Generics.html#the-four-type-abilities-copy-drop-store-and-key","week_2/Generics.html#storage-polymorphism","week_2/Generics.html#unused-and-phantom-types","week_2/Generics.html#-movenav","week_2/Generics.html#the-future-of-move-type-programming","week_2/Safety.html#safety","week_2/Safety.html#linear-logic","week_2/Safety.html#move-type-system","week_2/Safety.html#the-move-prover","week_2/Intro_smart_contracts.html#introduction-to-smart-contracts","week_2/Intro_smart_contracts.html#origins-of-smart-contracts","week_2/Intro_smart_contracts.html#comparison--multicontractfib","week_2/Intro_smart_contracts.html#solidity","week_2/Intro_smart_contracts.html#anchor","week_2/Intro_smart_contracts.html#movement","week_2/Testing.html#testing","week_2/Testing.html#movement-profile-configuration","week_2/Testing.html#automated-testing","week_2/Testing.html#manual-testing","week_2/Testing.html#with-movement","week_2/Testing.html#semi-automation","week_2/Testing.html#testing-directives","week_2/Testing.html#test","week_2/Testing.html#test_only","week_2/Testing.html#expect_failure","week_2/Testing.html#mocks-stubs-and-state-based-simulation","week_2/Testing.html#mocks-and-stubs","week_2/Testing.html#state-based-simulation","week_2/Testing.html#for-movement","week_2/Design_patterns.html#design-patterns","week_2/Development_staging.html#smart-contracts-development-and-staging","week_2/Development_staging.html#development","week_2/Development_staging.html#move","week_2/Development_staging.html#movement","week_2/Development_staging.html#staging","week_3/week_3.html#week-3-m1-and-defi-applications","week_3/Deploying_on_M1.html#deploying-on-m1","week_3/Deploying_on_M1.html#-multicontractfib","week_3/Security.html#security","week_3/Security.html#m1","week_3/Security.html#attack-surface","week_3/Security.html#blockchain","week_3/Security.html#smart-contracts","week_3/Security.html#dapps","week_3/Security.html#handling-user-data","week_3/Security.html#data-minimization","week_3/Security.html#access-control","week_3/Security.html#encryption","week_3/Security.html#pseudonymization","week_3/Security.html#dos","week_3/Common_blockchain_system_design_patterns.html#common-blockchain-system-design-patterns","week_3/Common_blockchain_system_design_patterns.html#oracles","week_3/Common_blockchain_system_design_patterns.html#rollups","week_3/Common_blockchain_system_design_patterns.html#tokenization","week_3/Common_blockchain_system_design_patterns.html#state-channels","week_3/Common_blockchain_system_design_patterns.html#side-chains","week_3/Common_blockchain_system_design_patterns.html#collaborative-governance","week_3/Common_blockchain_system_design_patterns.html#atomic-swaps","week_3/Common_blockchain_system_design_patterns.html#proofs-and-zero-knowledge","week_3/Access_control.html#access-control","week_3/Access_control.html#signatures-and-certificates","week_3/Access_control.html#acls-rbac-and-abac","week_3/Access_control.html#permissioned-chains","week_3/DeFi.html#defi","week_3/DeFi.html#what-is-defi","week_3/DeFi.html#why-decentralize","week_3/DeFi.html#financial-applications-of-decentralized-systems","week_3/DeFi.html#purchasing","week_3/DeFi.html#lending","week_3/DeFi.html#trading","week_3/DeFi.html#defi-phenomena","week_3/DeFi.html#yield-farming","week_3/DeFi.html#flash-loans","week_3/DeFi.html#automated-market-making","week_3/DeFi.html#coins","week_3/DeFi.html#important-defi-algorithms","week_3/DeFi.html#constant-product-market-maker-cpmm-and-constant-mean-market-maker-cmmm","week_3/DeFi.html#fraud-proof-and-binary-search","week_3/DeFi.html#modern-portfolio-theory-mpt","week_3/DeFi.html#risk-models","week_4/week_4.html#week-4-projects","week_4/Project_requirements_and_recommendations.html#project-requirements-and-recommendations","week_4/Project_requirements_and_recommendations.html#requirements","week_4/Project_requirements_and_recommendations.html#project-recommendations","week_4/Project_requirements_and_recommendations.html#dapps","week_4/Project_requirements_and_recommendations.html#infrastructure","week_4/Project_requirements_and_recommendations.html#bounties","week_4/Project_requirements_and_recommendations.html#contribute","week_4/Guidelines.html#guidelines","week_4/Guidelines.html#requirements-gathering","week_4/Guidelines.html#pitching-and-presenting","week_4/Guidelines.html#crafting-a-paper-and-deck","week_4/Guidelines.html#the-pitch","week_4/Guidelines.html#the-presentation","week_4/Guidelines.html#support","week_4/Guidelines.html#general-outreach","week_4/Guidelines.html#bugs","week_4/Next_steps.html#next-steps"],"index":{"documentStore":{"docInfo":{"0":{"body":66,"breadcrumbs":4,"title":2},"1":{"body":30,"breadcrumbs":10,"title":5},"10":{"body":47,"breadcrumbs":13,"title":6},"100":{"body":130,"breadcrumbs":8,"title":2},"101":{"body":23,"breadcrumbs":7,"title":1},"102":{"body":0,"breadcrumbs":9,"title":3},"103":{"body":16,"breadcrumbs":8,"title":2},"104":{"body":43,"breadcrumbs":8,"title":2},"105":{"body":17,"breadcrumbs":7,"title":1},"106":{"body":21,"breadcrumbs":7,"title":1},"107":{"body":52,"breadcrumbs":7,"title":1},"108":{"body":0,"breadcrumbs":15,"title":5},"109":{"body":174,"breadcrumbs":11,"title":1},"11":{"body":36,"breadcrumbs":13,"title":6},"110":{"body":58,"breadcrumbs":11,"title":1},"111":{"body":67,"breadcrumbs":11,"title":1},"112":{"body":40,"breadcrumbs":12,"title":2},"113":{"body":43,"breadcrumbs":12,"title":2},"114":{"body":62,"breadcrumbs":12,"title":2},"115":{"body":43,"breadcrumbs":12,"title":2},"116":{"body":59,"breadcrumbs":13,"title":3},"117":{"body":12,"breadcrumbs":9,"title":2},"118":{"body":67,"breadcrumbs":9,"title":2},"119":{"body":119,"breadcrumbs":10,"title":3},"12":{"body":45,"breadcrumbs":15,"title":8},"120":{"body":68,"breadcrumbs":9,"title":2},"121":{"body":13,"breadcrumbs":7,"title":1},"122":{"body":35,"breadcrumbs":7,"title":1},"123":{"body":35,"breadcrumbs":7,"title":1},"124":{"body":0,"breadcrumbs":10,"title":4},"125":{"body":17,"breadcrumbs":7,"title":1},"126":{"body":235,"breadcrumbs":7,"title":1},"127":{"body":23,"breadcrumbs":7,"title":1},"128":{"body":0,"breadcrumbs":8,"title":2},"129":{"body":27,"breadcrumbs":8,"title":2},"13":{"body":38,"breadcrumbs":10,"title":3},"130":{"body":22,"breadcrumbs":8,"title":2},"131":{"body":37,"breadcrumbs":9,"title":3},"132":{"body":146,"breadcrumbs":7,"title":1},"133":{"body":0,"breadcrumbs":9,"title":3},"134":{"body":12,"breadcrumbs":16,"title":10},"135":{"body":18,"breadcrumbs":10,"title":4},"136":{"body":14,"breadcrumbs":10,"title":4},"137":{"body":16,"breadcrumbs":8,"title":2},"138":{"body":18,"breadcrumbs":6,"title":3},"139":{"body":15,"breadcrumbs":9,"title":3},"14":{"body":63,"breadcrumbs":9,"title":2},"140":{"body":26,"breadcrumbs":7,"title":1},"141":{"body":15,"breadcrumbs":8,"title":2},"142":{"body":34,"breadcrumbs":7,"title":1},"143":{"body":52,"breadcrumbs":7,"title":1},"144":{"body":34,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":11,"breadcrumbs":5,"title":1},"147":{"body":233,"breadcrumbs":6,"title":2},"148":{"body":0,"breadcrumbs":6,"title":2},"149":{"body":55,"breadcrumbs":7,"title":3},"15":{"body":13,"breadcrumbs":9,"title":2},"150":{"body":48,"breadcrumbs":5,"title":1},"151":{"body":64,"breadcrumbs":5,"title":1},"152":{"body":12,"breadcrumbs":5,"title":1},"153":{"body":13,"breadcrumbs":6,"title":2},"154":{"body":11,"breadcrumbs":5,"title":1},"155":{"body":10,"breadcrumbs":7,"title":2},"16":{"body":17,"breadcrumbs":9,"title":2},"17":{"body":64,"breadcrumbs":9,"title":2},"18":{"body":31,"breadcrumbs":8,"title":1},"19":{"body":42,"breadcrumbs":9,"title":2},"2":{"body":11,"breadcrumbs":10,"title":3},"20":{"body":21,"breadcrumbs":8,"title":1},"21":{"body":80,"breadcrumbs":8,"title":1},"22":{"body":22,"breadcrumbs":11,"title":3},"23":{"body":68,"breadcrumbs":12,"title":4},"24":{"body":0,"breadcrumbs":11,"title":3},"25":{"body":13,"breadcrumbs":9,"title":1},"26":{"body":42,"breadcrumbs":8,"title":0},"27":{"body":23,"breadcrumbs":9,"title":1},"28":{"body":0,"breadcrumbs":9,"title":1},"29":{"body":40,"breadcrumbs":9,"title":1},"3":{"body":68,"breadcrumbs":8,"title":1},"30":{"body":68,"breadcrumbs":9,"title":1},"31":{"body":55,"breadcrumbs":10,"title":2},"32":{"body":82,"breadcrumbs":11,"title":3},"33":{"body":28,"breadcrumbs":10,"title":2},"34":{"body":8,"breadcrumbs":11,"title":3},"35":{"body":59,"breadcrumbs":9,"title":1},"36":{"body":25,"breadcrumbs":10,"title":2},"37":{"body":26,"breadcrumbs":9,"title":1},"38":{"body":22,"breadcrumbs":9,"title":1},"39":{"body":146,"breadcrumbs":9,"title":1},"4":{"body":23,"breadcrumbs":10,"title":3},"40":{"body":28,"breadcrumbs":9,"title":1},"41":{"body":11,"breadcrumbs":13,"title":4},"42":{"body":56,"breadcrumbs":10,"title":1},"43":{"body":21,"breadcrumbs":10,"title":1},"44":{"body":32,"breadcrumbs":10,"title":1},"45":{"body":271,"breadcrumbs":10,"title":1},"46":{"body":24,"breadcrumbs":11,"title":3},"47":{"body":62,"breadcrumbs":10,"title":2},"48":{"body":10,"breadcrumbs":10,"title":2},"49":{"body":34,"breadcrumbs":9,"title":1},"5":{"body":91,"breadcrumbs":12,"title":5},"50":{"body":31,"breadcrumbs":9,"title":1},"51":{"body":17,"breadcrumbs":9,"title":1},"52":{"body":30,"breadcrumbs":11,"title":3},"53":{"body":17,"breadcrumbs":9,"title":1},"54":{"body":20,"breadcrumbs":12,"title":6},"55":{"body":31,"breadcrumbs":14,"title":4},"56":{"body":76,"breadcrumbs":11,"title":1},"57":{"body":173,"breadcrumbs":16,"title":6},"58":{"body":116,"breadcrumbs":17,"title":7},"59":{"body":208,"breadcrumbs":12,"title":2},"6":{"body":38,"breadcrumbs":11,"title":4},"60":{"body":132,"breadcrumbs":13,"title":3},"61":{"body":141,"breadcrumbs":11,"title":1},"62":{"body":13,"breadcrumbs":14,"title":4},"63":{"body":21,"breadcrumbs":8,"title":1},"64":{"body":31,"breadcrumbs":9,"title":2},"65":{"body":86,"breadcrumbs":10,"title":3},"66":{"body":70,"breadcrumbs":9,"title":2},"67":{"body":0,"breadcrumbs":12,"title":3},"68":{"body":397,"breadcrumbs":12,"title":3},"69":{"body":27,"breadcrumbs":11,"title":2},"7":{"body":35,"breadcrumbs":10,"title":3},"70":{"body":26,"breadcrumbs":10,"title":1},"71":{"body":28,"breadcrumbs":10,"title":1},"72":{"body":9,"breadcrumbs":10,"title":1},"73":{"body":15,"breadcrumbs":8,"title":1},"74":{"body":87,"breadcrumbs":10,"title":3},"75":{"body":117,"breadcrumbs":9,"title":2},"76":{"body":36,"breadcrumbs":9,"title":2},"77":{"body":184,"breadcrumbs":8,"title":1},"78":{"body":25,"breadcrumbs":9,"title":2},"79":{"body":7,"breadcrumbs":9,"title":2},"8":{"body":41,"breadcrumbs":9,"title":2},"80":{"body":45,"breadcrumbs":8,"title":1},"81":{"body":13,"breadcrumbs":8,"title":1},"82":{"body":83,"breadcrumbs":8,"title":1},"83":{"body":17,"breadcrumbs":12,"title":5},"84":{"body":97,"breadcrumbs":9,"title":2},"85":{"body":37,"breadcrumbs":10,"title":3},"86":{"body":129,"breadcrumbs":8,"title":1},"87":{"body":17,"breadcrumbs":10,"title":2},"88":{"body":0,"breadcrumbs":14,"title":4},"89":{"body":10,"breadcrumbs":11,"title":1},"9":{"body":24,"breadcrumbs":10,"title":3},"90":{"body":63,"breadcrumbs":11,"title":1},"91":{"body":28,"breadcrumbs":11,"title":1},"92":{"body":35,"breadcrumbs":11,"title":1},"93":{"body":11,"breadcrumbs":10,"title":5},"94":{"body":38,"breadcrumbs":9,"title":2},"95":{"body":24,"breadcrumbs":8,"title":1},"96":{"body":17,"breadcrumbs":7,"title":1},"97":{"body":23,"breadcrumbs":7,"title":1},"98":{"body":0,"breadcrumbs":8,"title":2},"99":{"body":98,"breadcrumbs":7,"title":1}},"docs":{"0":{"body":"Welcome to Building with Movement ! Over the course of this booklet, we will be addressing topics related to developing for the Movement blockchain. This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time. By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages. If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz . This book has an accompanying GitHub repository here. You can also navigate to it by clicking the icon on any page.","breadcrumbs":"Building with Movement » Building with Movement","id":"0","title":"Building with Movement"},"1":{"body":"This week kicks off our exploration of the Move language and Movement ecosystem. We will begin by introducing Move, setting up an appropriate developer environment, and covering the basics of the Move language. Many of the topics concerning the move language will be revisited in greater depth during Week 2.","breadcrumbs":"Week 1: Introduction to Move and Movement » Week 1: Introduction to Move and Movement","id":"1","title":"Week 1: Introduction to Move and Movement"},"10":{"body":"Smart contracts are self-executing agreements with predefined conditions encoded in code. In the blockchain context, smart contracts are executed by nodes across the network. Virtual machines, such as the Move Virtual Machine (Move VM) used in the Move programming language, ensure that all nodes interpret and execute the smart contract code uniformly. This guarantees that the same logic is executed across the network, promoting trust and enabling reliable transaction execution.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Smart Contracts: Nodes Running the Same Logic","id":"10","title":"Smart Contracts: Nodes Running the Same Logic"},"100":{"body":"Environment Smart contracts rely on the execution environment in which they run. Insecure environments can expose smart contracts to attacks, such as sandbox escapes or unauthorized access to system resources. External dependencies Smart contracts often interact with external systems or data sources. These dependencies can introduce security risks, such as malicious data feeds or vulnerabilities in the connected systems. Code vulnerabilities Flaws in the code of smart contracts can lead to various vulnerabilities, including reentrancy attacks, integer overflow/underflow, and logic errors. These vulnerabilities can be exploited to manipulate contract behavior or steal funds. Thankfully, thanks to its type-system, resource-orientation, and linear programming model, the Move language makes it difficult to publish code with many of the common smart contract vulnerabilities. Upgradability The ability to upgrade smart contracts introduces potential security risks. Unauthorized or malicious upgrades can compromise the integrity of the contract or introduce vulnerabilities that can be exploited. Thankfully, the Move language introduces the concept of modules, which are self-contained units of code that encapsulate the functionality of smart contracts. Unlike traditional smart contracts, Move modules can be upgraded without disrupting the entire system or requiring complex migration processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Smart contracts","id":"100","title":"Smart contracts"},"101":{"body":"Integration risks Decentralized applications (dApps) often integrate with external services or APIs. Insecure integration points can expose dApps to security risks, such as unauthorized data access or injection of malicious code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » dApps","id":"101","title":"dApps"},"102":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Handling User Data","id":"102","title":"Handling User Data"},"103":{"body":"Blockchain applications should follow the principle of data minimization, collecting only the necessary data and avoiding the storage of sensitive information that is not required for the application's functionality.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Data minimization","id":"103","title":"Data minimization"},"104":{"body":"Proper access control mechanisms should be implemented to ensure that only authorized individuals or entities can access sensitive user data. This includes authentication, authorization, and secure role-based access control. Move uses an account-based ownership model where each account has its own address and associated permissions. Access control can be enforced at the account level, ensuring that only authorized users can perform specific actions.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Access control","id":"104","title":"Access control"},"105":{"body":"Sensitive user data stored in the blockchain or associated systems should be encrypted to protect it from unauthorized access. Encryption algorithms and protocols should be carefully chosen and implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Encryption","id":"105","title":"Encryption"},"106":{"body":"To enhance privacy, blockchain applications can pseudonymize user data by replacing personally identifiable information with pseudonyms or cryptographic identifiers. This makes it difficult to directly link user identities to their data.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Pseudonymization","id":"106","title":"Pseudonymization"},"107":{"body":"Denial-of-Service (DoS) attacks aim to disrupt the availability of a blockchain application or the entire network by overwhelming the system with an excessive amount of requests or by exploiting vulnerabilities in the network's infrastructure. DoS attacks can result in service unavailability or degradation, impacting the application's functionality and user experience. Implementing robust DoS mitigation strategies is essential to protect against such attacks. As mentioned above, Avalanche's adaptive security approach it difficult to successfully deny network service.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » DoS","id":"107","title":"DoS"},"108":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Common blockchain system design patterns","id":"108","title":"Common blockchain system design patterns"},"109":{"body":"Oracles play a crucial role in blockchain applications by providing a bridge between the blockchain and the external world. They are trusted entities or mechanisms that bring off-chain data onto the blockchain, making it accessible to smart contracts and decentralized applications. Oracles enable the blockchain to interact with real-world events, data feeds, APIs, and other external systems. By leveraging oracles, blockchain applications can access and process external information in a reliable and secure manner. We built 💻 NewsMoves, examples/movement/new_moves, as a toy oracle contract that allows a trusted entity to write the latest Google news articles onto the blockchain. Please checkout the directory to publish the contract and run the Python data entity. module news_moves::news_moves { use std::signer; use std::vector; // Struct representing a news article entry struct Article has copy { timestamp: u64, title: vector, content: vector, } // NewsMoves struct representing the contract state struct NewsMoves { articles: vector
, } // Initialization function for the NewsMoves contract public fun init() { move_to(@news_moves, NewsMoves { articles: vector::empty
(), }); } public fun update( account: &signer, timestamp: u64, title: vector, content: vector, ) acquires NewsMoves { // update the contract at the account let account_addr = signer::address_of(account); let self = borrow_global_mut(account_addr); // add the new article vector::push_back(&mut self.articles, Article { timestamp: timestamp, title: title, content: content, }); } // Function to get the latest news article from the contract public fun getLatestArticle(): Article { // Get the latest article from the contrac let moves = borrow_global(@news_moves); let len = vector::length(&articles); assert(len > 0, 98); // Ensure there is at least one article let latestArticleIndex = len - 1; *moves.articles[latestArticleIndex] } }","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Oracles","id":"109","title":"Oracles"},"11":{"body":"Verification is a critical aspect of the blockchain ecosystem. Nodes need to agree on the validity of transactions and smart contract execution. Virtual machines facilitate this verification process by providing a standardized environment where nodes can discuss and agree upon the execution of the same logic. By achieving consensus on the outcomes, nodes can ensure the integrity and consistency of the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Verification: Nodes Talking About Running the Same Logic","id":"11","title":"Verification: Nodes Talking About Running the Same Logic"},"110":{"body":"Rollups are a layer 2 scaling solution for blockchains that aim to improve scalability and reduce transaction costs. They work by aggregating multiple transactions off-chain and then submitting a summary or proof of those transactions to the main chain. This reduces the burden on the main chain, allowing for faster and more efficient processing. Rollups can significantly increase transaction throughput and enable complex applications to run smoothly on the blockchain while maintaining a high level of security. We added a toy dispute mechanism 💻 NewsMoves, examples/movement/new_moves to demonstrate how part of a rollup could implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Rollups","id":"110","title":"Rollups"},"111":{"body":"Tokenization is the process of representing real-world or digital assets as tokens on a blockchain. It enables the creation of digital representations (tokens) that can be owned, transferred, and managed on the blockchain. Tokenization has broad applications, ranging from representing physical assets like real estate or artwork to creating digital assets like utility tokens or security tokens. By tokenizing assets, blockchain-based systems can provide increased liquidity, fractional ownership, and facilitate seamless transferability of assets in a secure and transparent manner. We implement a toy tokenization scheme and separately used our framework's aptos_token_objects to augment 💻 NewsMoves, examples/movement/new_moves and demonstrate Movement token utilities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Tokenization","id":"111","title":"Tokenization"},"112":{"body":"State channels are a scalability solution in blockchain that allows off-chain execution of transactions between participants. They enable fast and low-cost transactions by keeping most of the interactions off-chain, while the final state is settled on the main blockchain. State channels are particularly useful for frequent and fast interactions, such as microtransactions or gaming applications, as they reduce congestion and improve transaction throughput.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » State Channels","id":"112","title":"State Channels"},"113":{"body":"Side chains are separate blockchains that are connected to the main blockchain, often referred to as the \"main chain\" or \"parent chain.\" They provide an additional layer of scalability and flexibility by allowing specific use cases or applications to operate on their own chain while still being interoperable with the main chain. Side chains can handle transactions and smart contracts independently, reducing the load on the main chain and enabling specialized functionalities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Side Chains","id":"113","title":"Side Chains"},"114":{"body":"Collaborative governance refers to the process of making collective decisions and managing blockchain networks through the participation and collaboration of multiple stakeholders. It involves mechanisms such as voting, consensus-building, and community-driven decision-making to govern the rules, upgrades, and overall direction of a blockchain network. Collaborative governance aims to ensure inclusivity, transparency, and alignment of interests among network participants. aptos_framework::aptos_governance provides a host of out of the box tools for handling proposals, dynamic voting systems, and member rewards. Using it you can implement a DAO and tests in a about a thousand lines of code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Collaborative Governance","id":"114","title":"Collaborative Governance"},"115":{"body":"Atomic swaps are a mechanism that allows the exchange of different cryptocurrencies or digital assets between two parties without the need for an intermediary or trusted third party. It enables secure peer-to-peer transactions directly between participants, ensuring that either the entire transaction is executed or none of it occurs. Atomic swaps enhance interoperability and facilitate decentralized exchanges by eliminating the need for centralized intermediaries.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Atomic Swaps","id":"115","title":"Atomic Swaps"},"116":{"body":"Zero-knowledge proofs are cryptographic techniques that enable a party to prove knowledge of certain information without revealing the actual information itself. They allow for privacy-preserving transactions and interactions on the blockchain, where participants can validate the correctness of a statement or the possession of certain data without disclosing sensitive details. Zero-knowledge proofs enhance confidentiality and confidentiality in blockchain applications, ensuring that privacy-sensitive information remains secure while still being verifiable. At Movement, we're working on a Zero-Knowledge VM powered by the Move Prover.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Proofs and Zero-Knowledge","id":"116","title":"Proofs and Zero-Knowledge"},"117":{"body":"This section briefly covers some considerations of blockchain access control and highlights places where Movement and this repo may be helpful.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Access Control","id":"117","title":"Access Control"},"118":{"body":"Signatures and certificates play a crucial role in access control on the blockchain. They enable authentication and ensure that only authorized entities can perform specific actions or access certain resources. Signatures provide proof of ownership and authenticity, while certificates verify the identity and permissions of participants. By utilizing strong cryptographic signatures and certificates, blockchain applications can establish secure and tamper-proof access control mechanisms. Avalanche uses Transport Layer Security, TLS, to protect node-to-node communications from eavesdroppers. The Avalanche virtual machine uses elliptic curve cryptography, specifically secp256k1, for its signatures on the blockchain, and signs all messages.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Signatures and certificates","id":"118","title":"Signatures and certificates"},"119":{"body":"Access Control Lists (ACLs), Role-Based Access Control (RBAC), and Attribute-Based Access Control (ABAC) are common frameworks used to manage and enforce access control policies in blockchain applications. ACLs define permissions based on a list of entities and their associated access rights. RBAC assigns permissions to roles, allowing for more centralized management of access control. ABAC grants access based on attributes, such as user attributes or environmental conditions. Each framework has its strengths and can be tailored to meet specific access control requirements in a blockchain application. A common pattern in Move and Movement development is to assert a contract owner. Using named addresses, @named_address. script owner_address::important_script { const ERNO_OWNER_ONLY : u64 = 0 fun do_important_thing(signer : address){ assert!(signer == @owner_address, ERNO_OWNER_ONLY); // do thing... } } Manipulation of addresses often serves as the basis for Movement access control mechanisms. The Move language provides host of unique safe ways to implement access controls for resources. aptos_framework::aptos_governance provides an easy to use module for governance which can allow for decentralized managed of these control lists.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » ACLs, RBAC, and ABAC","id":"119","title":"ACLs, RBAC, and ABAC"},"12":{"body":"The virtual machine acts as an execution environment for smart contracts and other blockchain operations. It ensures that the same logic applied to a smart contract on one node is identical to the logic applied on every other node. This consistency is essential for achieving consensus and maintaining the immutability of the blockchain. Virtual machines, such as the Move VM, enforce the rules and protocols defined by the blockchain platform, allowing for secure and reliable execution of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual Machine: Makes Sure the Same Logic is the Same Logic","id":"12","title":"Virtual Machine: Makes Sure the Same Logic is the Same Logic"},"120":{"body":"Permissioned chains are blockchain networks that restrict participation to authorized entities only. Unlike public or permissionless blockchains, permissioned chains require participants to obtain explicit permission or be part of a predefined set of trusted entities. Permissioned chains are often employed in enterprise or consortium settings, where privacy, confidentiality, and control over network participants are paramount. By leveraging permissioned chains, blockchain applications can enforce stricter access control and maintain a trusted network environment. While the Movement testnet is not a permissioned chain, our virtual machines strong access controls--due to the Move language--make it easy to restrict access to select resources.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Permissioned chains","id":"120","title":"Permissioned chains"},"121":{"body":"This section treats with a general overview DeFi problems and solution, and the faculties of Movement M1 to help create these solutions.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi","id":"121","title":"DeFi"},"122":{"body":"Decentralized Finance (DeFi) refers to a category of financial applications and platforms built on blockchain networks that aim to provide open, permissionless, and decentralized alternatives to traditional financial systems. DeFi leverages the transparency, immutability, and programmability of blockchain technology to enable financial activities without the need for intermediaries or centralized authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » What is DeFi?","id":"122","title":"What is DeFi?"},"123":{"body":"Decentralization in DeFi brings several advantages, including increased transparency, censorship resistance, improved accessibility, and reduced reliance on trusted third parties. By removing intermediaries and enabling peer-to-peer transactions, decentralization can enhance efficiency, reduce costs, and empower individuals to have more control over their financial activities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Why Decentralize?","id":"123","title":"Why Decentralize?"},"124":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Financial Applications of Decentralized Systems","id":"124","title":"Financial Applications of Decentralized Systems"},"125":{"body":"Decentralized systems allow for the direct peer-to-peer purchase of digital assets, cryptocurrencies, and other goods or services without the need for intermediaries or central authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Purchasing","id":"125","title":"Purchasing"},"126":{"body":"DeFi platforms enable individuals to lend and borrow funds directly from other users through smart contracts, removing the need for traditional financial intermediaries such as banks. Check out examples/movement/gimme_mini for a toy implementation of both a direct and peer-pooled lending platform. // example supply function from gimme_mini direct lending platform\npublic fun supply( account: &signer, market_obj: Object, underlying_fa: FungibleAsset\n): FungibleAsset acquires Vault, Market { assert!( fungible_asset::asset_metadata(&underlying_fa) == fungible_asset::store_metadata(market_obj), ERR_MARKET_MISMATCH ); let underlying_amount = fungible_asset::amount(&underlying_fa); // update market fungible store fungible_asset::deposit(market_obj, underlying_fa); // mint ctoken let ctoken_amount = underlying_to_ctoken(market_obj, underlying_amount); let market = borrow_global_mut(object::object_address(&market_obj)); let ctoken = fungible_asset::mint(&market.ctoken_mint_ref, ctoken_amount); // update user vault init_vault_if_not_exists(account); let vault = borrow_global_mut(signer::address_of(account)); if (!vector::contains(&vault.collaterals, &market_obj)) { vector::push_back(&mut vault.collaterals, market_obj); }; ctoken\n} module peer_pooled_lend::peer_pooled_lend { use std::signer; friend mini_lend::LoanOfficer; /// Lends funds to liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough funds to lend. /// 2. Check for suspicious activity. /// 2. If account has enough funds to lend... /// 1. MiniLend will transfer funds from account to liquidity pool. public fun lend(account : signer, amount : u64){ // ... } /// Allows lender to seek repayment from liquidity pool. /// 1. LoanOfficer will... /// 1. Determine whether account is lender. /// 2. Determine loan period is up. /// 2. If the account is a valid lender and the loan period is up... /// 1. MiniLend will transfer funds from liquidity pool to account or self-collateralize. public fun seek_repayment(account : signer, amount : u64){ // ... } /// Borrows funds from liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough collateral /// 2. Check account credit. /// 3. If account has enough collateral and credit... /// 2. If account has enough collateral and credit... /// 1. MiniLend will borrow funds from liquidity pool /// 3. Whether or not the account will successully borrow funds, run the audit function. public fun borrow(account : signer, amount : u64){ // ... } public fun repay(account : signer, amount : u64){ // ... } /// Looks over loan tables and dispatches events to manage loans /// Anyone can call this function enabling decentralized book keeping. public fun audit(account : signer){ // ... } }","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Lending","id":"126","title":"Lending"},"127":{"body":"Decentralized exchanges (DEXs) facilitate trustless trading of digital assets directly between users, eliminating the need for centralized order books and custody of funds by intermediaries. Movement has an ready-made DEX.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Trading","id":"127","title":"Trading"},"128":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi Phenomena","id":"128","title":"DeFi Phenomena"},"129":{"body":"Yield farming involves leveraging various DeFi protocols to maximize returns on cryptocurrencies or digital assets by providing liquidity, staking, or participating in other activities to earn additional rewards. Check out examples/movement/yield_gardner for a toy implementation of a yield farmer.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Yield Farming","id":"129","title":"Yield Farming"},"13":{"body":"Several implementations of the Move virtual machine exist, including the Move VM, Aptos VM, and Sui VM. These implementations provide alternative approaches to executing Move code and offer flexibility and compatibility with different blockchain platforms and ecosystems. Each implementation has its own characteristics, optimizations, and use cases, catering to diverse blockchain development requirements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Move Virtual Machines","id":"13","title":"Move Virtual Machines"},"130":{"body":"Flash loans are uncollateralized loans that allow users to borrow funds temporarily for specific transactions within a single blockchain transaction. They exploit the composability and fast transaction finality of smart contracts.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Flash Loans","id":"130","title":"Flash Loans"},"131":{"body":"Automated market makers (AMMs) are decentralized protocols that use mathematical formulas to determine asset prices and provide liquidity for trading. They have revolutionized liquidity provision in DeFi by eliminating the need for order books and enabling continuous trading. Check out examples/movement/gimme_mini for a toy implementation of a lending platform built atop the liquidswap AMM.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Automated Market Making","id":"131","title":"Automated Market Making"},"132":{"body":"Coins are typically created and recorded on the blockchain through a consensus mechanism, ensuring their authenticity and immutability. They can be transferred between participants on the network, used for transactions, and sometimes serve additional purposes such as voting rights or access to certain functionalities within decentralized applications (dApps) built on the blockchain. Coins play a fundamental role in enabling economic activity and incentivizing participation within the blockchain ecosystem. Movement provides built-in utilties to easily create and managed coins at varying levels of abstraction. // A managed coin.\n//:!:>sun\nmodule sun_coin::sun_coin { struct SunCoin {} fun init_module(sender: &signer) { aptos_framework::managed_coin::initialize( sender, b\"Sun Coin\", b\"SUN\", 6, false, ); }\n}\n//<:!:sun // Handling coin transactions\nscript { use aptos_framework::coin; use std::vector; // There are two ways to approach this problem // 1. Withdraw the total then distribute the pieces by breaking it up or // 2. Transfer for each amount individually fun main(sender: &signer, split : vector
, amount: u64) { let i = 0; let len = vector::length(split); let coins = coin::withdraw(sender, amount); while (i < len) { let coins_pt = coin::extract(&mut coins, amount / len); coin::deposit( vector::borrow(split, i), coins_pt ); }; }\n} Stablecoins are a type of coin that aims to maintain a stable value, typically pegged to a fiat currency like the US Dollar or a basket of assets. They provide price stability, making them suitable for various use cases within the decentralized finance ecosystem.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Coins","id":"132","title":"Coins"},"133":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Important DeFi Algorithms","id":"133","title":"Important DeFi Algorithms"},"134":{"body":"These algorithms are used in AMMs to maintain liquidity and determine prices based on the constant product or mean principles.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)","id":"134","title":"Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)"},"135":{"body":"These algorithms enhance security in DeFi protocols by detecting and mitigating potential fraud or malicious activities. Binary search is often used to optimize search and validation processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Fraud Proof and Binary Search","id":"135","title":"Fraud Proof and Binary Search"},"136":{"body":"MPT is applied in DeFi to optimize asset allocation and portfolio management, considering risk, returns, and correlations among different assets.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Modern Portfolio Theory (MPT)","id":"136","title":"Modern Portfolio Theory (MPT)"},"137":{"body":"DeFi relies on various risk models and methodologies to assess and manage risks associated with lending, borrowing, and other financial activities in decentralized systems.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Risk Models","id":"137","title":"Risk Models"},"138":{"body":"Week 4 is all about building projects. If you're reading through this notebook outside of our hackathon, we hope you find the resources useful for building your first Movement project.","breadcrumbs":"Week 4: Projects » Week 4: Projects","id":"138","title":"Week 4: Projects"},"139":{"body":"In this section we discuss project requirements and recommendations. Many of the recommendations involve working on technologies that we're keen on developing and incubating for Movement!","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project Requirements and Recommendations","id":"139","title":"Project Requirements and Recommendations"},"14":{"body":"The transaction processing speed (TPS) of the underlying blockchain is a primary limitation on smart contract complexity. Higher TPS allows for more intricate and computationally intensive smart contracts to be executed within a given time frame. Movement facilitates a theoretical maximum TPS of 160,000 by combining the technologies of Move and Avalanche Snowball consensus. This scalability enhancement enables more sophisticated and resource-intensive smart contracts to be processed efficiently. In addition to its high TPS, Movement provides developer-friendly features via its Aptos-based VM and an ergonomic standard library .","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Limitations and Movement","id":"14","title":"Limitations and Movement"},"140":{"body":"For all hackathon participants, we expect... a pitch deck, a paper, links to source developed during the hackathon. We've included templates for LaTeX and PPT in the templates/presentation folder. You will make five minute pitches using your deck at the end of the hackathon.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Requirements","id":"140","title":"Requirements"},"141":{"body":"There are a variety of ways to use and contribute to the Movement ecosystem. These include dApp development, infrastructure development, bounties, and direct contributions to our software.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project recommendations","id":"141","title":"Project recommendations"},"142":{"body":"The content of this course should have prepared you to work on dApps such as the following. Continue with 💻 GimmeMini, examples/movement/gimme_mini Continue with 💻 MiniDex, examples/movement/mini_dex. Create a mini oracle provider, rollup provider, or validator set management system. You may wish to continue from 💻 NewsMoves examples/movement/new_moves Decentralized Twitter clone. You may fish to continue from 💻 MyFirstDapp examples/movement/my_first_dapp.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » dApps","id":"142","title":"dApps"},"143":{"body":"We're all about continuing to build out the Movement ecosystem to empower more awesome developers like you. At the time of writing, the following are all things we have a close eye on. Connect a new wallet! Right now we only support Pontem on testnet. Create an L2 that allows us to deposit levered funds in another protocol. Create a framework for borrowing funds against an asset. Create a framework that allows for customizable liquidity strategies. Build integrations with Perp . Develop a stable swap with another subnet","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Infrastructure","id":"143","title":"Infrastructure"},"144":{"body":"We've also put together a zealy.io community. Some of our bounties include. Report UI/UX bug Report backend bug Deploy App with 100 unique smart contract interactions Community Award To 3 Most used dApps Screenshot using App Deploy project from Aptos / Sui Contribute to Champions","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Bounties","id":"144","title":"Bounties"},"145":{"body":"We welcome contributions to our source, including the movement-hack repo from which this book is sourced. Generally speaking we encourage you to... Develop new starter code and example modules. Submit PRs against open issues. Improve documentation.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Contribute","id":"145","title":"Contribute"},"146":{"body":"This section outlines some best practices for the project and Movement success, as well as how to get in touch with the team for support.","breadcrumbs":"Week 4: Projects » Guidelines » Guidelines","id":"146","title":"Guidelines"},"147":{"body":"Requirements gathering is a critical phase in the software development process that involves capturing, analyzing, and documenting the needs and expectations of stakeholders. It lays the foundation for a successful project by ensuring a clear understanding of what needs to be built. Here are some steps for successful requirements gathering: Identify Stakeholders: Identify and involve all relevant stakeholders, including clients, end-users, subject matter experts, and other project team members. Each stakeholder brings unique perspectives and insights into the project requirements. Define the Scope: Clearly define the scope of the project by outlining its objectives, boundaries, and limitations. This helps set realistic expectations and ensures that the requirements gathering process remains focused. Conduct Interviews and Workshops: Engage in one-on-one interviews and group workshops with stakeholders to gather their input, understand their needs, and identify any existing challenges or pain points. Encourage open and honest communication to capture comprehensive requirements. Document Requirements: Document the gathered requirements in a structured manner, ensuring clarity, completeness, and traceability. Use techniques such as use cases, user stories, functional and non-functional requirements, and process flows to capture different aspects of the system. Validate and Verify: Validate the gathered requirements by reviewing them with stakeholders to ensure accuracy and alignment with their expectations. Seek their feedback and address any concerns or discrepancies. Verify the requirements against the project objectives and constraints. Prioritize Requirements: Prioritize the requirements based on their importance, urgency, and impact on project success. Collaborate with stakeholders to establish a clear understanding of the most critical and high-priority features. Iterate and Refine: Requirements gathering is an iterative process. Continuously refine and iterate the requirements based on feedback, changing project needs, and evolving stakeholder requirements. Regularly communicate and collaborate with stakeholders to ensure ongoing alignment. Remember, successful requirements gathering involves effective communication, active listening, and collaboration with stakeholders throughout the process. By following these steps, developers can gather comprehensive and accurate requirements that form a solid foundation for successful software development. If you require further assistance or guidance, feel free to reach out to Movement Labs using the contact information below in Support .","breadcrumbs":"Week 4: Projects » Guidelines » Requirements Gathering","id":"147","title":"Requirements Gathering"},"148":{"body":"","breadcrumbs":"Week 4: Projects » Guidelines » Pitching and presenting","id":"148","title":"Pitching and presenting"},"149":{"body":"Crafting a concise and visually appealing pitch deck is crucial for effectively presenting your small blockchain project at the end of a hackathon. Structure your deck to highlight the problem your project solves, the solution you've developed, the target market, and the unique value it offers. Emphasize the key features and benefits of your project, along with any notable achievements during the hackathon. Use clear and concise language, visual aids, and a consistent design to enhance the overall presentation. We've provided a templates for LaTeX and PPT in presentations/templates.","breadcrumbs":"Week 4: Projects » Guidelines » Crafting a paper and deck","id":"149","title":"Crafting a paper and deck"},"15":{"body":"This section examines tooling and provides setup instructions for working with the Movement blockchain and the various examples in covered in this booklet.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Developer Setup","id":"15","title":"Developer Setup"},"150":{"body":"During the pitch, focus on delivering a compelling and concise message that captures the attention of the judges and participants. Clearly articulate the problem your project addresses, the solution it provides, and how it leverages blockchain technology. Highlight the practical applications, benefits, and potential market opportunities of your project. Demonstrate how your project differentiates itself from existing solutions and how it aligns with the hackathon's theme or challenges. Be confident, enthusiastic, and passionate about your project, conveying the potential impact and value it brings.","breadcrumbs":"Week 4: Projects » Guidelines » The pitch","id":"150","title":"The pitch"},"151":{"body":"When delivering your presentation, aim for clarity, professionalism, and effective communication. Begin with a concise and attention-grabbing introduction to hook the audience. Provide a brief overview of your project's development process, focusing on the key milestones achieved during the hackathon. Showcase any live demos, prototypes, or working features of your project, demonstrating its functionality and value proposition. Highlight the technical aspects of your project, such as the blockchain technology used, any smart contracts implemented, and the scalability or security measures in place. Conclude your presentation with a compelling call-to-action, inviting the judges and participants to engage with your project and explore its potential.","breadcrumbs":"Week 4: Projects » Guidelines » The presentation","id":"151","title":"The presentation"},"152":{"body":"We're happy to support all developers on Movement. Whatever your problems, needs or desires, we hope we can help out.","breadcrumbs":"Week 4: Projects » Guidelines » Support","id":"152","title":"Support"},"153":{"body":"For general questions, comments, and concerns please email liam@movementlabs.xyz or open up a new discussion in movemntdev/movement-hack .","breadcrumbs":"Week 4: Projects » Guidelines » General outreach","id":"153","title":"General outreach"},"154":{"body":"If you believe you've identified a bug, please create an issue in movemntdev/movement-hack . We will triage accordingly.","breadcrumbs":"Week 4: Projects » Guidelines » Bugs","id":"154","title":"Bugs"},"155":{"body":"Now that you've completed this book and your projects, we invite you to provide your feedback and stay in touch!","breadcrumbs":"Week 4: Projects » Next Steps » Next Steps","id":"155","title":"Next Steps"},"16":{"body":"The budding Move ecosystem sports a variety of developer friendly tools. As we list off tools that will be relevant to this booklet, keep in mind that there are number of projects we have not included.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » The Move ecosystem","id":"16","title":"The Move ecosystem"},"17":{"body":"As previously discussed, there are several virtual machine implementations available for Move development--each of with is paired with particular blockchain. Besides the Movement VM, the most well-known Move virtual machines are Move VM, Aptos VM, and Sui VM We provide a comparison of these different virtual machines in our docs . When selecting a virtual machine for development its important to consider performance, ease of use, and stability. Aptos VM built upon the original and stable Move VM to provide an improved developer experience. The Movement VM builds upon Aptos VM to provide improved performance.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Virtual machines","id":"17","title":"Virtual machines"},"18":{"body":"There are three CLIs worth note in the Move language development space. All support building, testing, deploying, and running smart contracts. move : the original CLI for Move development. aptos: the CLI for Aptos development. movement : our very own CLI. In this booklet we will be working with move and movement.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » CLIs","id":"18","title":"CLIs"},"19":{"body":"Move has a package manager, movey . However, generally we will recommend adding dependencies directly to your Move.toml file. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Package managers","id":"19","title":"Package managers"},"2":{"body":"This section is intended to orient the reader on the history of the language and various Move virtual machine implementations.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Introduction to Move and Movement","id":"2","title":"Introduction to Move and Movement"},"20":{"body":"There are several useful development enviroments for Move. This book will be geared towards using VsCode because of the its developer container features and its Move analyzer . However, syntax highlighting has been implemented for other IDEs including Vim .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » IDE","id":"20","title":"IDE"},"21":{"body":"We'll be using the move and movement CLIs; no package manager; and VsCode most-often running the movement-dev Docker container from public.ecr.aws/c4i6k4r8/movement-dev . To get started... Clone the repo from which this book originates: https://github.com/movemntdev/movement-hack Open the repo in VsCode. Based on the advice provided for a given project, reopen the repo in one of move, movement-dev, anchor, or solidity devcontainers . Alternatively, when working with movement-dev you may: docker image pull public.ecr.aws/c4i6k4r8/movement-dev\ndocker run -it -v \"$(pwd):/workspace\" public.ecr.aws/c4i6k4r8/movement-dev /bin/bash We will also occasionally use Rust and Python to complete various programming examples. We will also discuss using our proxy service with the JavaScript. The movement-dev developer container provides an easy start place for this alternative means of interacting with the subnet .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Our Setup","id":"21","title":"Our Setup"},"22":{"body":"This section treats with basic Move syntax, comparing the language to Rust. This is merely intended to provide some guidance for booklet participants. More comprehensive guides can be found at move-book.com and move-language.github.io .","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Basic Move Syntax","id":"22","title":"Basic Move Syntax"},"23":{"body":"Move's resource-oriented language model leads to a unique memory model: Resources in Move are allocated and deallocated implicitly based on their defined lifespan and ownership semantics. This ensures proper resource management without the need for explicit memory allocation or deallocation. Resources are created and stored on the blockchain as part of a transaction, providing a persistent and tamper-resistant storage mechanism. Global storage in Move allows for the storage of resource data that can be accessed across multiple transactions and smart contracts. While function ownership in Move is similar to Rust, it is less permissive and closer to being purely linear--restricting the set of possible borrows.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Allocation and the Move Memory Model","id":"23","title":"Allocation and the Move Memory Model"},"24":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions and Control Flow","id":"24","title":"Expressions and Control Flow"},"25":{"body":"Move use a similar expression-orientation to Rusts. Block returns are possible. fun eight() : u8 { 8\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions","id":"25","title":"Expressions"},"26":{"body":"Branching in Move is accomplished via if and else statements. There is not an else if statement. if (a) { debug::print(&0);\n} else { debug::print(&99);\n}; if is an expression. let value = if (true) { 8 } else {0}; // value set to 8 Move syntax for expressions and control flow shares similarities with Rust. Basic control flow constructs like if, while, and loop are present in Move as well. However, Move has a more limited set of expressions and control flow features compared to Rust.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » if","id":"26","title":"if"},"27":{"body":"Move supports while and loop looping constructs. while loops while condition is true. loop loops infinitely. There is no for loop, both while and loop are roughly equally used as replacements. // example of while loop\nwhile (i < 10) { Vector::push_back(&mut a, i); i = i + 1;\n};","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » while and loop","id":"27","title":"while and loop"},"28":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Types","id":"28","title":"Types"},"29":{"body":"Move has the primitive types boolean, u8, u64, u128, address, and signer. Move also supports hex- and byte-string literals. let byte_val = b\"hello, world!\"; // byte string\nlet hex_val = x\"48656C6C6F210A\"; // hex string Integers can be type cast with the as keyword. signer represents the sender of a transaction and is used for access control and authentication. signer can be converted to address with signer::address_of.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Primitives","id":"29","title":"Primitives"},"3":{"body":"The Move programming language was originally developed by Facebook's Libra project, now known as Diem, to facilitate the creation of smart contracts on its blockchain platform. The language takes its name from the underlying concept of moving resources rather than copying them, aligning with the principles of resource-oriented programming. Move was designed to address the unique challenges of blockchain development, such as security, efficiency, and scalability. Its origins can be traced back to the vision of creating a blockchain-based financial infrastructure that would be accessible to billions of people around the world. Today, Move continues to evolve as an open-source language, with a growing ecosystem and community supporting its development and adoption.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Libra/Diem","id":"3","title":"Libra/Diem"},"30":{"body":"Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust. copy: The copy ability allows for the type's value to be copied. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. Conditional abilities allow types to have different behaviors based on conditions.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Abilities","id":"30","title":"Abilities"},"31":{"body":"Move supports generics for structs and functions. It's possible to achieve polymorphic behavior with generics and phantom types. Often you will want to nest generic structures inside of resources to achieve polymorphism. See the LiquidityPool generic structure below for an example. // polymorphic coin fee obtainment from liquidswap.\n/// Get fee for specific pool.\npublic fun get_fee(): u64 acquires LiquidityPool { assert!(coin_helper::is_sorted(), ERR_WRONG_PAIR_ORDERING); assert!(exists>(@liquidswap_pool_account), ERR_POOL_DOES_NOT_EXIST); let pool = borrow_global>(@liquidswap_pool_account); pool.fee\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Generic and behavior","id":"31","title":"Generic and behavior"},"32":{"body":"You can create a reference with & and &mut. You cannot use the mut keyword during assignment, .e.g., let mut value = ... will not compile. Global storage operators move_to, move_from, borrow_global_mut, borrow_global, and exists in Move enable reading from and writing to resources stored in the blockchain's global storage. The acquires keyword is used to specify which resources a function acquires ownership of a resource during execution. module collection::collection { use std::signer; struct Item has store, drop {} struct Collection has key, store { items: vector } public fun add_item(account: &signer) acquires Collection { let collection = borrow_global_mut(signer::address_of(account)); vector::push_back(&mut collection.items, Item {}); }\n} Move allows the creation of read-only references to resources, ensuring that functions cannot modify them. Here's a small code snippet demonstrating the use of Move syntax:","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Resources, References, and Mutation","id":"32","title":"Resources, References, and Mutation"},"33":{"body":"The public keyword in Move indicates that a function can be invoked from outside the current module. The native keyword is used to declare functions that are implemented in the blockchain runtime or in an external module. There are VM specific directives; in Movement we will address #[inline], #[view], #[test_only], and #[test].","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Misc. syntax","id":"33","title":"Misc. syntax"},"34":{"body":"This section treats with the basic functionality of the module and build system for Move.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules and Build System","id":"34","title":"Modules and Build System"},"35":{"body":"A folder with a Move.toml and compilable move code is a package. Packages may define external dependencies, which can be local or store at a remote repository. All Move clients used herein will automatically fetch and compile dependencies. When using movement, we will also define package addresses in the Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Packages","id":"35","title":"Packages"},"36":{"body":"Move has two different types of program: modules and scripts . As a general rule, you should use scripts for short proofs of concept or as an entrypoint, see Script Based Design . You can define multiple scripts and modules in the same file.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Program types","id":"36","title":"Program types"},"37":{"body":"Modules are great for code reuse. They can be reference and linked. A module takes the following form. module
:: { ( | | | | )*\n} When attempting to use logic in a module, you must specify the member function that you wish to call.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules","id":"37","title":"Modules"},"38":{"body":"Scripts are a slightly easier to use alternative to modules. They take the following form. script { * * fun <[type parameters: constraint]*>([identifier: type]*) \n} Scripts can only have one function in their body.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Scripts","id":"38","title":"Scripts"},"39":{"body":"When developing for modules in move you will typically need to manually publish the module before being able to run. The exception to this rule is when using movement to run unit tests. movement move publish will handle both the building and publication of modules in your current working directory. If you simply want to build the module to inspect its bytecode run movement move build. Below is an example bash script for publishing and running a function in a module end-to-end using the Movement CLI. #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Building","id":"39","title":"Building"},"4":{"body":"Resource-orientation is a fundamental concept in programming languages like Move that greatly benefits the blockchain ecosystem. By aligning with the principles of resource-oriented programming, the blockchain can enhance security, efficiency, and reliability of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Resource-orientation and the blockchain","id":"4","title":"Resource-orientation and the blockchain"},"40":{"body":"Within aptos_framework, you will be able to use named addresses. These will be replaced at compile time whether they are in the adrress position in a module ::my_module or marked with an @. In your Move.toml, you may specify these addresses as below. [addresses]\nstd = \"0x1\"\n = \"_\" You may then specify them when compiling using --=.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » named_addresses","id":"40","title":"named_addresses"},"41":{"body":"This section introduces a few basic smart contracts from this repository as a starting point for programming activites.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » Debugging Basic Smart Contracts","id":"41","title":"Debugging Basic Smart Contracts"},"42":{"body":"Is a very simple program for MoveVM. You can find it at examples/move/hello_world. Learnings leveraged: Basic Move syntax Byte strings script { use std::debug; // use std::vector; fun debug_script(account : signer) { // Encode the \"Hello, world!\" as a byte string. let hello = b\"Hello, world!\"; // Print the byte string as a vector by passing a reference to the byte string. debug::print>(&hello); }\n} To run... move sandbox run sources/hello_world_script.move --signers 0xf\n> [debug] 0x48656c6c6f2c20776f726c6421 Double-check the output hex... echo 48656c6c6f2c20776f726c6421 | xxd -r - p","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 HelloWorld","id":"42","title":"💻 HelloWorld"},"43":{"body":"The obligatory Move program that computes the nth Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib. Learnings leveraged: Basic Move syntax Byte strings","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 Fib","id":"43","title":"💻 Fib"},"44":{"body":"From scratch implementation of a priority queue, a couple variations of a hash map, and a binary tree. This may be a useful reference point for building more challenging projects that require custom data strucures. You can find it at examples/move/data_structures. Learnings leveraged: Basic Move syntax Vectors BCS Move idioms","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 DataStructures","id":"44","title":"💻 DataStructures"},"45":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it at examples/move/resource_roulette. Learnings leveraged: Basic Move syntax Signer and address types Borrows Initialization Move idioms module resource_roulette::resource_roulette { use std::vector; use std::signer; const ENO_UNAUTHORIZED_ADDRESS : u64 = 0; // ResourceRoulette struct representing the contract state struct ResourceRoulette has key { bids: vector>, owner: address, state : u64 } struct RouletteWinnings has key { amount : u64 } // Initialization function for the ResourceRoulette contract public fun init(account: &signer) { assert!(signer::address_of(account) == @resource_roulette, ENO_UNAUTHORIZED_ADDRESS); let bids = vector::empty>(); let i = 0; while (i < 32) { vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; move_to(account, ResourceRoulette { bids, owner: @resource_roulette, state : 17203943403948 }); } // Initializes winnings for a signer public fun init_winnings(account: &signer) { move_to(account, RouletteWinnings { amount: 0, }); } // Bid function to allow signers to bid on a specific slot public fun bid(account : &signer, slot: u8) acquires ResourceRoulette { if (!exists(signer::address_of(account))) { init_winnings(account); }; let self = borrow_global_mut(@resource_roulette); roll_state(self); let bids_size = vector::length(&self.bids); assert!(slot < (bids_size as u8), 99); let slot_bids = vector::borrow_mut(&mut self.bids, (slot as u64)); vector::push_back(slot_bids, signer::address_of(account)); } public fun total_bid() : u64 { // Make this more complex to support actual bidding return 100 } // rolls state using xoroshiro prng fun roll_state(self :&mut ResourceRoulette) { let state = (self.state as u256); let x = state; let y = state >> 64; let t = x ^ y; state = ((x << 55) | (x >> 9)) + y + t; y = y ^ x; state = state + ((y << 14) | (y >> 50)) + x + t; state = state + t; state = state % (2^128 - 1); self.state = (state as u64); } public fun get_noise() : u64 { 1 } fun empty_bids(self : &mut ResourceRoulette){ // empty the slots let bids = vector::empty>(); let i = 0; while (i < 32) { vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; self.bids = bids; } // Roll function to select a pseudorandom slot and pay out all signers who selected that slot public fun spin() acquires ResourceRoulette, RouletteWinnings { let self = borrow_global_mut(@resource_roulette); // get the winning slot let bids_size = vector::length(&self.bids); roll_state(self); let winning_slot = (get_noise() * self.state % (bids_size as u64)) ; // pay out the winners let winners = vector::borrow(&self.bids, winning_slot); let num_winners = vector::length(winners); if (num_winners > 0){ let balance_per_winner = total_bid()/( num_winners as u64); let i = 0; while (i < num_winners) { let winner = vector::borrow(winners, i); let winnings = borrow_global_mut(*winner); winnings.amount = winnings.amount + balance_per_winner; i = i + 1; }; }; empty_bids(self); } // tests... }","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 ResourceRoulette","id":"45","title":"💻 ResourceRoulette"},"46":{"body":"This section examines the standard library and framework that ships with Movement. Both are based on their Aptos namesakes. Disclaimer: there are many more useful modules in the standard library and framework. We will discuss some of them in this course and encourage you to explore them as you go.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » Movement Standard Library","id":"46","title":"Movement Standard Library"},"47":{"body":"Prints to a message to the console using a VM native func. The associated [debug] outputs are easiest to view when unit testing. module debug_demo::message { use std::string; use std::signer; use aptos_std::debug; struct MessageHolder has key { message: string::String, } public entry fun set_message(account: signer, message_bytes: vector) acquires MessageHolder { debug::print_stack_trace(); let message = string::utf8(message_bytes); let account_addr = signer::address_of(&account); if (!exists(account_addr)) { move_to(&account, MessageHolder { message, }); } else { let old_message_holder = borrow_global_mut(account_addr); old_message_holder.message = message; } } #[test(account = @0x1)] fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); debug::print
(&addr); set_message(account, b\"Hello, Blockchain\"); }\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::debug and aptos_std::debug","id":"47","title":"std::debug and aptos_std::debug"},"48":{"body":"A useful dynamically size collection with an aptos_std:: counterpart optimized for a large number of elements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::vector and aptos_std::big_vector","id":"48","title":"std::vector and aptos_std::big_vector"},"49":{"body":"An associative array. fun run_table(account: signer) { let t = table::new(); let key: u64 = 100; let error_code: u64 = 1; assert!(!table::contains(&t, key), error_code); assert!(*table::borrow_with_default(&t, key, &12) == 12, error_code); add(&mut t, key, 1); assert!(*table::borrow_with_default(&t, key, &12) == 1, error_code); move_to(&account, TableHolder{ t });\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_std::table","id":"49","title":"aptos_std::table"},"5":{"body":"In resource-oriented programming, like Move, the stack model is employed to manage data ownership and control access. Take for example the following unsafe C program. #include \n#include \n#include void printAndFree(char* data) { printf(\"Data: %s\\n\", data); free(data); // Function takes ownership and frees the memory\n} int main() { char* value = (char*)malloc(strlen(\"Hello\") + 1); strcpy(value, \"Hello\"); printAndFree(value); // Pass ownership of 'value' to the function // Attempt to access the value after it has been freed printf(\"Data after freeing: %s\\n\", value); // Unsafe access! return 0;\n} In Move, this kind of unsafe access would not be possible because of strict ownership conditions. Each function owns the resources it creates and is responsible for their lifecycle. This ownership model ensures that resources are properly managed and prevents unauthorized access or modification, bolstering the security of blockchain-based applications.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Stack Model Programming and Function Ownership","id":"5","title":"Stack Model Programming and Function Ownership"},"50":{"body":"This module defines the Option type and its methods to represent and handle an optional value. The implementation is based on a vector. fun option_contains() { let none = option::none(); let some = option::some(5); let some_other = option::some(6); assert!(option::contains(&some, &5), 0); assert!(option::contains(&some_other, &6), 1); assert!(!option::contains(&none, &5), 2); assert!(!option::contains(&some_other, &5), 3);\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::option","id":"50","title":"std::option"},"51":{"body":"A resource account is used to manage resources independent of an account managed by a user. This is is useful for building things like liquidity providers which we will discuss later in the course.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_framwork::resource_account","id":"51","title":"aptos_framwork::resource_account"},"52":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell, but only when cash out. Balances are tracked in a aptos_std::table. You can find it and instructions to run it examples/movement/resource_roulette.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 ResourceRoulette pt. 2","id":"52","title":"💻 ResourceRoulette pt. 2"},"53":{"body":"A tiny key value store for vector files. Implements store and load functionality using a aptos_framework::resource_account and a aptos_std::table. You can find it and instructions to run it examples/movement/mini_fs.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 MiniFs","id":"53","title":"💻 MiniFs"},"54":{"body":"This week treats with more advanced concepts in the Move language and focuses our Move development efforts on the Movement blockchain. This is also intended as an opportunity to practice and revisit concepts from Week 1.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Week 2: Advanced Move and Move for Movement","id":"54","title":"Week 2: Advanced Move and Move for Movement"},"55":{"body":"In this section we will examine Move's support for common type-level program models. Owing to the strictness of its programming model, many of the features found in modern programming languages are not available in Move. We conclude with a programming example, 💻 MoveNav , that implements a polymorphic navigation module using Move.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics, type constraints, and polymorphism","id":"55","title":"Generics, type constraints, and polymorphism"},"56":{"body":"Generics act as abstract stand-ins for concrete types and allow for type-independent code. A single function written with generics can be used for any type. In the Move language, generics can be applied to struct and function signatures. // source: https://move-language.github.io/move/generics.html\nfun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} struct Foo has copy, drop { x: T } let x = id(true); // ok!\nlet x = id(true); // error! true is not a u64 struct Foo has copy, drop { x: T } let foo = Foo { x: 0 }; // error! 0 is not a bool\nlet Foo
{ x } = foo; // error! bool is incompatible with address\nlet bar = Foo { x : true }; // ok!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics","id":"56","title":"Generics"},"57":{"body":"In Rust you can write code that composes traits to implement functionality similar to subtyping in other languages. trait Animal { fn make_sound(&self);\n} trait Fly { fn fly(&self);\n} trait Swim { fn swim(&self);\n} trait FlyingSwimmingAnimal: Animal + Fly + Swim { fn do_flying_swimming_stuff(&self) { self.make_sound(); self.fly(); self.swim(); }\n} struct Duck { name: String,\n} impl Animal for Duck { fn make_sound(&self) { println!(\"The duck {} says quack!\", self.name); }\n} impl Fly for Duck { fn fly(&self) { println!(\"The duck {} is flying.\", self.name); }\n} impl Swim for Duck { fn swim(&self) { println!(\"The duck {} is swimming.\", self.name); }\n} fn perform_actions(animal: &T) { animal.make_sound(); animal.fly(); animal.swim();\n} fn main() { let duck = Duck { name: String::from(\"Donald\"), }; perform_actions(&duck);\n} As part of the strictness of its programming model, Move does not support these constructs. Instead to achieve something similar to subtyping, it is often best to compose structs. That is, while you cannot establish an is relationship between types, you can establish a has relationship. This may be a more familiar model for those used to programming in C. module 0x42::Animal { use std::string; use std::debug; struct Animal { sound : string; name : string; } struct FlyingAnimal { flies : bool; speed : u8; animal : Animal; } struct Bird { flying_animal : FlyingAnimal; feather_description : string; } fun make_sound(animal : Animal){ debug::print(animal.sound); } fun bird_make_sound(bird : Bird){ make_sound(bird.flying_animal.animal); } } Importantly, however, you cannot compose types to provide bounds on generic functions. An equivalent of fn perform_actions(animal: &T) does not exist. Further below, we will discuss more advanced means of achieving similar subtyping and polymorphism. However, in most cases, you will be better off simply choosing a simpler programming model.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Move does not support subtyping or composable type constraints","id":"57","title":"Move does not support subtyping or composable type constraints"},"58":{"body":"copy: The copy ability allows for the type's value to be cloned. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. These abilites may be used to define type bounds for generic functions and structs. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} Importantly, in the publish_generic_box example above, the type T must also have the has and store abilities owing to Move's rules of ability composition: copy: All fields must have copy. drop: All fields must have drop. store: All fields must have store. key: All fields must have store.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The Four Type Abilities: copy, drop, store, and key","id":"58","title":"The Four Type Abilities: copy, drop, store, and key"},"59":{"body":"Storage polymorphism is the ability to index into global storage via a type parameter chosen at runtime. By leveraging storage polymorphism in combination with generics, Move developers can write generic algorithms, functions, and modules that can work with different resource types stored in the blockchain's storage. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} While not as flexible as general polymorphism found in some languages, Move's storage polymorphism can quickly compose complex and useful operations for the blockchain. The below is an example of function for adding liquidity from Movement's dex router. Under the hood, global storage polymorphism is being used to enable to the publication of generic coins. /// Add liquidity to pool `X`/`Y` with rationality checks.\n/// * `coin_x` - coin X to add as liquidity.\n/// * `min_coin_x_val` - minimum amount of coin X to add as liquidity.\n/// * `coin_y` - coin Y to add as liquidity.\n/// * `min_coin_y_val` - minimum amount of coin Y to add as liquidity.\n/// Returns remainders of coins X and Y, and LP coins: `(Coin, Coin, Coin>)`.\n///\n/// Note: X, Y generic coin parameters must be sorted.\npublic fun add_liquidity( coin_x: Coin, min_coin_x_val: u64, coin_y: Coin, min_coin_y_val: u64,\n): (Coin, Coin, Coin>) { assert!(coin_helper::is_sorted(), ERR_WRONG_COIN_ORDER); let coin_x_val = coin::value(&coin_x); let coin_y_val = coin::value(&coin_y); assert!(coin_x_val >= min_coin_x_val, ERR_INSUFFICIENT_X_AMOUNT); assert!(coin_y_val >= min_coin_y_val, ERR_INSUFFICIENT_Y_AMOUNT); let (optimal_x, optimal_y) = calc_optimal_coin_values( coin_x_val, coin_y_val, min_coin_x_val, min_coin_y_val ); let coin_x_opt = coin::extract(&mut coin_x, optimal_x); let coin_y_opt = coin::extract(&mut coin_y, optimal_y); let lp_coins = liquidity_pool::mint(coin_x_opt, coin_y_opt); (coin_x, coin_y, lp_coins)\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Storage polymorphism","id":"59","title":"Storage polymorphism"},"6":{"body":"Resource-oriented programming languages like Move implement access restrictions at all levels of code execution. From the top-level contract to individual functions, access to resources is strictly controlled. This granular access control minimizes the risk of unauthorized operations and ensures that only authorized parties can interact with specific resources, promoting secure and auditable transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Access Restriction All the Way Down","id":"6","title":"Access Restriction All the Way Down"},"60":{"body":"In order to enforce type constraints at compile-time, unused type parameters can be marked as phantom type parameters. Arguments to phantom type parameters won't be considered when determining the abilities of the generic type. Thus, this eliminates the need for spurious ability annotations. Generics, along with storage polymorphism and phantom type parameters, offer flexibility, code reuse, and type safety. These features make it easier to create modular and reusable code components for safe contracts in the Move language. For instance, generics can be used to define generic data structures such as lists, maps, or queues that can store and manipulate values of any type. In addition, generics enable the creation of templatized algorithms which can operate on different types of data. // source: https://move-language.github.io/move/generics.html?highlight=phantom%20types#unused-type-parameters\nmodule 0x2::m { // Currency Specifiers struct Currency1 {} struct Currency2 {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_concrete(value: u64): Coin { Coin { value } }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Unused and phantom types","id":"60","title":"Unused and phantom types"},"61":{"body":"💻 MoveNav implements Dijkstra's algorithm for navigating over a graph with different navigation types in move. We'll use a simple approach to domain modeling outlined below. // redacted version of examples/movement/MoveNav\nmodule 0x42::MoveNav { use std::vector; use std::option; use std::debug; use std::string; struct Graph { nodes: vector, edges: vector, } struct Vector3 { x: u8, y: u8, z: u8, } struct Edge { source: u8, target: u8, weight: u8, } struct Navigation { graph: Graph, navigation_type: NavigationType, } struct NavigationType { name: string::String, speed: u8, } fun navigate(nav: Navigation, start: Vector3, end: Vector3): option::Option { debug::print(\"Navigating from \", start, \" to \", end); let nav_type = &nav.navigation_type; if nav_type.name == \"Walk\" { debug::print(\"Walking at speed \", nav_type.speed); // Perform walking navigation logic return option::none() } if nav_type.name == \"Run\" { debug::print(\"Running at speed \", nav_type.speed); // Perform running navigation logic return option::none() } if nav_type.name == \"Fly\" { debug::print(\"Flying at speed \", nav_type.speed); // Perform flying navigation logic return option::none() } else { debug::print(\"Unsupported navigation type\"); return option::none() } } fun set_graph(nav: &mut Navigation, graph: Graph) { nav.graph = graph; } fun set_navigation_type(nav: &mut Navigation, nav_type: NavigationType) { nav.navigation_type = nav_type; }\n} To dive into the project, please clone this book's repo, and navigate to examples/movement/MoveNav.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » 💻 MoveNav","id":"61","title":"💻 MoveNav"},"62":{"body":"The MSL specification provides for more advanced type-level constructs. For ambitious developers, these may be powerful contribution objectives!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The future of Move type programming","id":"62","title":"The future of Move type programming"},"63":{"body":"This section examines the safety features of Move in greater and more theoretical detail. There are no programming exercises designed for this section. It is primarily intended to motivate the usage of Move language in the context of blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Safety","id":"63","title":"Safety"},"64":{"body":"The Move Language was inspired by linear logic, a formal system of logic that was developed by Jean-Yves Girard in 1987. In linear logic, formulas were regarded as resources which could only be used once. Similarly, in the Move language, resources can only be moved between storage locations, never copied or dropped.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Linear logic","id":"64","title":"Linear logic"},"65":{"body":"Move's type system enables special safety guarantees for resources. It ensures that move resources can not be duplicated, reused, or implicitly discarded. Attempts to duplicate, reuse, or implicitly discard a resource will result in a bytecode verification error. Notwithstanding these unique safeguards, resources in the Move language possess the characteristics of regular program values. They can be stored in data structures, passed as arguments to procedures, and utilized in similar ways. module 0x42::LinearLogicExample { use std::vector; use std::debug; struct Token has drop { value: u8, } fun use_token(token: Token) { debug::print>(\"Using token.\"); // Perform operations with the token... } public fun main() { let token: Token; token = Token { value: 10 }; debug::print>(b\"Before use:\"); debug::print(token.value); use_token(token); debug::print(token.value); // Attempting to access `token` here would result in a compile-time error }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Move type system","id":"65","title":"Move type system"},"66":{"body":"The Move Prover is a formal verification tool specifically designed for the Move programming language. The Move Prover performs static analysis of Move programs, exploring all possible execution paths and applying various verification techniques. It can reason about program behaviors, ownership and borrowing rules, resource lifecycles, and other aspects of Move's type system and semantics. By leveraging the Move Prover, developers can gain increased confidence in the correctness and security of their Move smart contracts. This tool helps identify potential issues before deployment, reducing the risk of vulnerabilities, ensuring adherence to best practices, and promoting the development of robust and reliable blockchain applications.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » The Move Prover","id":"66","title":"The Move Prover"},"67":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Introduction to Smart Contracts","id":"67","title":"Introduction to Smart Contracts"},"68":{"body":"Long before blockchain technology, American cryptographer and programmer, Nick Szabo, proposed the idea of the smart contracts in 1996. At the time of his proposal, the distributed ledger did not exist, and thus his idea could be not built upon. The first cryptocurrency, Bitcoin, was created in 2008, which helped to motivate the development of smart contracts. In 2013, Ethereum became the first platform to host smart contracts. Now, there are plenty of platforms that are used to bring Szabo's idea to life. When it comes to implementing smart contracts, resource orientation plays a crucial role in ensuring security, efficiency, and reliability. Resource-oriented programming languages, such as Move, have emerged as a powerful tool for developing smart contracts on blockchain platforms. Move, specifically designed for the Libra blockchain, places a strong emphasis on resource-oriented programming principles, which have proven to be highly beneficial in the context of smart contracts. Here's why resource orientation is important in languages like Move: Security and Safety: Smart contracts often handle valuable digital assets, and any vulnerability or flaw in the contract's code can lead to disastrous consequences, including financial losses. Resource-oriented programming in Move enforces strict ownership and borrowing rules, ensuring that resources are properly managed and protected. The language's type system guarantees the absence of common vulnerabilities like reentrancy and enables static verification of contracts, minimizing the risk of critical bugs and making smart contracts more secure. Efficient Resource Management: In traditional programming languages, objects or data structures are often copied or cloned when passed between functions or contracts. This can lead to unnecessary memory consumption and performance bottlenecks. Resource-oriented programming in Move takes a different approach. Resources are moved between functions or contracts, rather than being copied, ensuring efficient use of memory and reducing the risk of unintended side effects. Move's ownership model allows for fine-grained control over resource lifecycles, enabling optimized resource management within smart contracts. Immutable and Transparent State: Blockchain technology inherently involves a distributed and immutable ledger that maintains the state of smart contracts. Resource-oriented programming aligns well with these characteristics, as Move enforces immutability for resources. Once a resource is created, its state cannot be modified directly, ensuring the integrity and consistency of the contract's data. This immutability also contributes to the transparency of the blockchain, as the entire history of resource states can be audited and verified by any participant. Concurrent and Parallel Execution: In decentralized blockchain networks, multiple transactions can be executed concurrently, requiring smart contracts to handle concurrent access to shared resources. Resource-oriented programming provides a solid foundation for handling concurrent execution. Move's borrowing mechanism allows for controlled and safe concurrent access to resources, preventing data races and ensuring deterministic execution. This capability enables scalable and efficient execution of smart contracts in a distributed environment. Upgradeability and Evolution: Smart contracts often need to evolve and adapt over time to incorporate new features, fix bugs, or address changing business requirements. Resource-oriented programming facilitates upgradability by decoupling the contract's data from its logic. By defining the behavior of resources separately from the contract's code, Move allows for smooth migration and upgrade of contracts while preserving the integrity of existing data and ensuring backward compatibility. Resource orientation in languages like Move plays a pivotal role in the development of secure, efficient, and reliable smart contracts. By enforcing ownership and borrowing rules, enabling efficient resource management, ensuring immutability and transparency of state, supporting concurrent execution, and facilitating upgradability, Move empowers developers to build robust and future-proof smart contracts on the blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Origins of smart contracts","id":"68","title":"Origins of smart contracts"},"69":{"body":"We've implemented a multi-contract fibonacci number computation in Solidity, Anchor, and Movement to illustrate the benefits of the move language and Movement. We encourage to run and compare the source for each. We've included devcontainers for Solidity and Anchor in the associated repo.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Comparison: 💻 MulticontractFib","id":"69","title":"Comparison: 💻 MulticontractFib"},"7":{"body":"Type linearity is a crucial aspect of resource-oriented programming that enforces the linear use of resources. In Move, resources have linear types, meaning they can only be consumed or moved, not duplicated. This feature prevents resource duplication, reduces memory consumption, and eliminates the risk of double-spending, ensuring the integrity and accuracy of transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Type Linearity and Ownership","id":"7","title":"Type Linearity and Ownership"},"70":{"body":"Solidity is high-level, object-oriented programming language used to implement smart contracts. It is the primary programming language used on the Ethereum blockchain. To work with the Solidity implementation, use the solidity devcontainer and work from the examples/solidity/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Solidity","id":"70","title":"Solidity"},"71":{"body":"Anchor is Solana's Sealevel runtime framework. It provides several developer tools for writing smart contracts in order to simplify the process and help developers to focus on their product. To work with the Anchor implementation, use the anchor devcontainer and work from the examples/anchor/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Anchor","id":"71","title":"Anchor"},"72":{"body":"This is us! To work with the Anchor implementation, use the movement devcontainer and work from the examples/movement/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Movement","id":"72","title":"Movement"},"73":{"body":"This section examines testing strategies for Move smart contracts on Movement. We will cover both automated and manual strategies for testing functionality.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing","id":"73","title":"Testing"},"74":{"body":"movement init --network testnet When building and testing an application, you will want to work against either the Movement testnet or a local network. The movement devcontainer is equipped with the movement CLI and uses docker-compose to start a local network; both options are available without additional setup when working with the devcontainer. When beginning a project, run movement init and specify either testnet or local. The first profile you create will be called default. To create a new profile run movement init --profile . You can then specify which profile you would like to use in various commands by --profile , e.g., move run --profile default .... You can inspect the details of all of your profiles at .movement/config.yaml in your working directory. # config.yaml\n---\nprofiles: default: private_key: \"0x23978a9c5a8c9291c3cb0283f5c4eee243f7ae81d62b3d3243aa06ac0fcde2cf\" public_key: \"0xf6ad6834565bda0f3fa8a093311f1a1308855773d2108cd04dd770da9c078ecd\" account: 29f06cb1f4139484e8c3dcd9f915ad39acb2aee9a8e8064ee48cfc255ecf10ca rest_url: \"https://fullnode.devnet.aptoslabs.com/\" faucet_url: \"https://faucet.devnet.aptoslabs.com/\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Movement profile configuration","id":"74","title":"Movement profile configuration"},"75":{"body":"Movement's CLI movement provides an aptos-like interface for building and testing Move smart contracts. The built-in testing functionality is best suited for unit testing. You can define tests in the same module or separately. // hello_blockchain.move\nmodule hello_blockchain::message { use std::error; use std::signer; use std::string; use aptos_framework::account; use aptos_framework::event; // ... #[test(account = @0x1)] public entry fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( get_message(addr) == string::utf8(b\"Hello, Blockchain\"), ENO_MESSAGE ); }\n} // hello_blockchain_test.move\n#[test_only]\nmodule hello_blockchain::message_tests { use std::signer; use std::unit_test; use std::vector; use std::string; use hello_blockchain::message; fun get_account(): signer { vector::pop_back(&mut unit_test::create_signers_for_testing(1)) } #[test] public entry fun sender_can_set_message() { let account = get_account(); let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); message::set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( message::get_message(addr) == string::utf8(b\"Hello, Blockchain\"), 0 ); }\n} You can then run tests for the package containing modules from the movement CLI. movement move test --named-addresses hello_blockchain=default For advanced use of movement for automated testing, such as coverage, see the movement CLI documentation .","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Automated testing","id":"75","title":"Automated testing"},"76":{"body":"Often, automated unit testing will be insufficient to determine that your smart contracts are ready for production. You will want to apply a set of end-to-end strategies to ensure smart contract quality. At the moment, all of these strategies are manual; however, automation can be built on-top of them. Contribution {: .contributor-block} Help us develop better tools for automated e2e and integration testing.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Manual testing","id":"76","title":"Manual testing"},"77":{"body":"There three key instructions for manual testing using movement: movement move publish: publishes modules and scripts to the Movement blockchain. movement move run: runs a module or script. movement account list: lists resources values. When testing manually, you will typically adopt a flow of publish->run->list. In the examples provided with this book's repository, you will commonly see bash scripts for running and testing Movement smart contract that orchestrate these three commands. The following is an example from our hello_blockchain contract: #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\" begin \"Setting hello_blockchain message to 'goodbye!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:goodbye!\nfinish \"Set hello_blockchain message to 'goodbye'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » With movement","id":"77","title":"With movement"},"78":{"body":"In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities. Share Share your semi-automated workflows with us!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Semi-automation","id":"78","title":"Semi-automation"},"79":{"body":"Movement provides several directives for testing which are important to understand.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing directives","id":"79","title":"Testing directives"},"8":{"body":"Double-spending is a significant concern in decentralized systems where digital assets are involved. Resource-oriented programming, like Move, mitigates the risk of double-spending by enforcing strict ownership and borrowing rules. Resources can only be moved or consumed once, preventing malicious actors from creating multiple transactions using the same resource and effectively eliminating the possibility of double-spending attacks.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Double-Spending","id":"8","title":"Double-Spending"},"80":{"body":"Marks a test function. Can be provided with arguments. When testing procedures that require signers, you will need set their values in the directive. Take the example below from 💻 ResourceRoulette #[test(account = @resource_roulette, bidder_one = @0x3)]\n#[expected_failure(abort_code = FLAG_WINNER)]\npublic fun test_wins(account : &signer, bidder_one : &signer) acquires Here our test expects both resource account, i.e., resource_roulette, and a bidder signer, i.e., bidder_one. We will discuss how these are used below.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[test]","id":"80","title":"#[test]"},"81":{"body":"Test only is used for defining symbols that will only be compiled when testing. It can be useful for creating mocks and stubs, test boundaries and more.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[test_only]","id":"81","title":"#[test_only]"},"82":{"body":"Allows you to check if a routine aborts as expected, i.e., matching a certain error code. In addition to asserting intended failures, you can use this behavior to define more complex tests that are based on boundary conditions being crossed. The example below from 💻 Resource Roulette uses this pattern to test whether winners emerge from the pseudorandom spinner. #[test_only]\nconst BOUNDARY_WINNER : u64 = 1; // Under the current state rolling implementation this will work\n// More robust testing would calculate system dynamics\n#[test(account = @resource_roulette, bidder_one = @0x3)]\n#[expected_failure(abort_code = FLAG_WINNER)]\npublic fun test_wins(account : &signer, bidder_one : &signer) acquires ResourceRoulette, RouletteWinnings { init(account); let i : u64 = 0; while (i < 1_000) { bid(bidder_one, 7); spin(); let winnings = borrow_global(signer::address_of(bidder_one)); if (winnings.amount > 0) { abort BOUNDARY_WINNER }; i = i + 1; }; }","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[expect_failure]","id":"82","title":"#[expect_failure]"},"83":{"body":"In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks, stubs, and state-based simulation","id":"83","title":"Mocks, stubs, and state-based simulation"},"84":{"body":"Mocks and stubs are both techniques used to simulate or replace certain components of a system being tested. A mock is a fake implementation of a method or an object, meant to simulate its real behavior. Stubs, on the other hand, are simplified implementations that do not imitate the real behavior. Instead, stubs produce a predefined response to a specific method call or input. Thus, mocks verify the behavior of code and stubs verify the state of the code. Some of the modules in the standard library and framework will be suitable for mocking. The example below uses a resource account function to mock a specialized publishing process. A good strong understanding of the standard library can result in much cleaner solutions to mocking problems. #[test_only]\npublic entry fun set_up_test(origin_account: &signer, resource_account: &signer) { use std::vector; account::create_account_for_test(signer::address_of(origin_account)); // create a resource account from the origin account, mocking the module publishing process resource_account::create_resource_account(origin_account, vector::empty(), vector::empty()); init_module(resource_account);\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks and stubs","id":"84","title":"Mocks and stubs"},"85":{"body":"State-based simulation is a testing technique that focuses on verifying a program based the correctness of its state transitions. First, one must identify and define the states that the program can be in. Next, the events or actions that trigger a transition between states must be defined. Using this information, proper test cases should be generated to explore different state transitions and scenarios.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » State-based simulation","id":"85","title":"State-based simulation"},"86":{"body":"Beyond the test and test_only directives, Movement does not not provide any additional ergonomics for mocking, stubbing, or state-based simulation. However, opting for a common environment module may be suitable for more complex cases. The example below uses storage polymorphism to implement a common environment store. address 0x42::Environment { // Unused type for global storage differentiation struct VariableA {} struct VariableB {} // A generic variable type that can be instantiated with different types struct VariableStore has store { value: V, } // Set the value of a variable public fun set_variable(value: V) acquires VariableStore { move_to>(account, VariableSore { value }) } // Get the value of a variable public fun get_variable(): V acquires VariableStore { borrow_global>(addr).value }\n} When setting up your tests, you would then want to run something like the below. You'll likely want to simply create a type bridge in the module above to enable external sets from the CLI. #!/bin/bash -e # set environment\nbegin \"Setting environment to slow...\"\necho \"y\" | movement move run --function-id default::message::set_slow_variable --args string:slow\nfinish \"Set environment to slow!\" Contribution Help us develop mocking and stubbing tools for Movement.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » For movement","id":"86","title":"For movement"},"87":{"body":"Ville Sundell has already provided an expert overview of useful design patterns in Move. As this book improves, we may include some of our own here. However, for now, we defer to Ville.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Design Patterns » Design Patterns","id":"87","title":"Design Patterns"},"88":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Smart Contracts development and staging","id":"88","title":"Smart Contracts development and staging"},"89":{"body":"When building smart contracts for movement you can use both the move client and movement itself.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Development","id":"89","title":"Development"},"9":{"body":"Virtual machines play a crucial role in the blockchain ecosystem, particularly in executing and enforcing the logic of smart contracts. They ensure that all nodes on the blockchain network run the same logic, enabling verification and consensus among participants.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual machines and the blockchain","id":"9","title":"Virtual machines and the blockchain"},"90":{"body":"The move CLI is a suitable tool for early and primitive development. You will not have access to the same onchain resources as when working with the movement CLI, such as access to our DEX. However, you will be able to use the move sandbox to build and run contracts. To make sure you are building with out standard library, include the following in your Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » move","id":"90","title":"move"},"91":{"body":"The movement CLI provides an aptos-like interface for running Move language scripts and modules. For more details see the movement CLI docs. When using movement in its default configuration, you will test and run contracts against our testnet. This is ideal for most Movement development.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » movement","id":"91","title":"movement"},"92":{"body":"The best way to publicly stage smart contracts for Movement is simply to us a movement CLI. If you are interested in a more private staging environment, you may use the movement CLI with the provided movement devcontainer to compose and stage against a local network. Contribution {: .contributor-block} Help us develop better tools for movement staging!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Staging","id":"92","title":"Staging"},"93":{"body":"M1 is Movement's first L1. This week is be all about building applications, particular DeFi applications, with Movement.","breadcrumbs":"Week 3: M1 and DeFi Applications » Week 3: M1 and DeFi Applications","id":"93","title":"Week 3: M1 and DeFi Applications"},"94":{"body":"At the time of writing, only the M1 testnet is available. To set up for deployment you only need to make sure you have a testnet profile configured. movement init --network testnet You may then use the movement CLI to publish your package. movement move publish --named-addresses hello_blockchain=default We encourage however to take a look at aptos_framework::resource_account and aptos_framework::resource_group for more advanced publication options.","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » Deploying on M1","id":"94","title":"Deploying on M1"},"95":{"body":"We encourage you to checkout examples/movement/multicontract_fib for an easy to inspect deployment. Once you've deployed, simply run the command below to check out the on-chain resources. movement account list --query resources --account default","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » 💻 MulticontractFib","id":"95","title":"💻 MulticontractFib"},"96":{"body":"This section provides a high-level overview of common blockchain concerns and points to features of Movement or modules from the Movement standard library that can be used to help.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Security","id":"96","title":"Security"},"97":{"body":"When working with M1 you will be able benefit from Avalanche's adaptive security and Move's strict programming model to avoid many of the vulnerabilities you would commonly encounter in smart contract development. You should, of course, remain aware of the vectors of attack.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » M1","id":"97","title":"M1"},"98":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Attack Surface","id":"98","title":"Attack Surface"},"99":{"body":"Network layer The network layer of a blockchain application is susceptible to various attacks, such as distributed denial-of-service (DDoS) attacks, eclipse attacks, and Sybil attacks. These attacks can disrupt the network's functionality and compromise its security. Consensus The consensus mechanism used in a blockchain application can be targeted by attackers through attacks like 51% attacks, where they gain majority control over the network's computing power and manipulate transactions or block validation. Thankfully, Avalanche consensus--which underpins movement--is designed to resist various attacks, including sybil attacks, distributed denial-of-service (DDoS) attacks, and collusion attacks. Its probabilistic nature ensures that the consensus outcome converges to the desired state, even when the network is under attack. Blockchain protocol: The underlying blockchain protocol may have vulnerabilities that can be exploited by attackers. Weaknesses in the protocol's cryptographic algorithms, consensus algorithms, or validation mechanisms can lead to security breaches.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Blockchain","id":"99","title":"Blockchain"}},"length":156,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951}},"x":{"1":{"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"144":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"65":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"3":{"9":{"4":{"3":{"4":{"0":{"3":{"9":{"4":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"8":{"7":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":3.0},"132":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"^":{"1":{"2":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"138":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"1":{"df":1,"docs":{"99":{"tf":1.0}}},"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":1,"docs":{"82":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":1,"docs":{"109":{"tf":1.0}}},"9":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"100":{"tf":1.0},"30":{"tf":2.8284271247461903},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"107":{"tf":1.0},"58":{"tf":1.0},"86":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":3.1622776601683795},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":3.605551275463989},"80":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0}}}},"v":{"df":8,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"109":{"tf":1.0},"59":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"r":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.7320508075688772},"147":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"45":{"tf":2.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"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":8,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"149":{"tf":1.0},"60":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":2.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"z":{"df":2,"docs":{"147":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"46":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"49":{"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":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":11,"docs":{"111":{"tf":2.23606797749979},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"137":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.7416573867739413}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"118":{"tf":1.4142135623730951},"132":{"tf":1.0},"29":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"17":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"14":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"107":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"r":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":2.0},"134":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":9,"docs":{"1":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":1,"docs":{"119":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"39":{"tf":2.23606797749979},"74":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"147":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"146":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"45":{"tf":3.3166247903554},"52":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.0}}},"df":51,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":4,"docs":{"25":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"61":{"tf":1.0},"77":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"126":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"126":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"144":{"tf":1.4142135623730951}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"114":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"114":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":2.0},"44":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"68":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"150":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"h":{"df":1,"docs":{"52":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"30":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":2.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"147":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"126":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"59":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.23606797749979},"21":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"132":{"tf":3.1622776601683795},"31":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":2.0},"147":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"32":{"tf":1.7320508075688772},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.4142135623730951},"55":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"151":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"155":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}},"s":{"df":5,"docs":{"130":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"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":2,"docs":{"147":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"151":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":3,"docs":{"119":{"tf":1.0},"45":{"tf":1.0},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"147":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"109":{"tf":2.0},"142":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"131":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"68":{"tf":2.0}}},"df":37,"docs":{"10":{"tf":2.0},"100":{"tf":3.3166247903554},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":4.47213595499958},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":2.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":3.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"64":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.0},"73":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"154":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"132":{"tf":1.0},"60":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"101":{"tf":1.7320508075688772},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"t":{"a":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"116":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":2.23606797749979}},"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"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":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"47":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"91":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"i":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"93":{"tf":1.4142135623730951}},"n":{"df":14,"docs":{"119":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"108":{"tf":1.0},"149":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":2,"docs":{"152":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":38,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":2.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"59":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"68":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"91":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":2.0}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"2":{"df":1,"docs":{"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"120":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"39":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":2.23606797749979},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"86":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"t":{"df":3,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"147":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"71":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"126":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"72":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":2,"docs":{"107":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"130":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"143":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"130":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"122":{"tf":1.0},"132":{"tf":1.0}},"i":{"df":7,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"138":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"140":{"tf":1.0}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"57":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"57":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":4,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"131":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":8,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"147":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"45":{"tf":1.7320508075688772},"5":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"100":{"tf":1.0},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"df":26,"docs":{"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":3.1622776601683795},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"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":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"121":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"19":{"tf":1.0},"31":{"tf":2.23606797749979},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178},"60":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":2,"docs":{"125":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":2.0},"119":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"150":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":7,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"77":{"tf":3.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"151":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"90":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"113":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.7320508075688772},"147":{"tf":1.0},"85":{"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":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"109":{"tf":1.0},"74":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"57":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"r":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"144":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"75":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"115":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"41":{"tf":1.0}},"t":{"df":4,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"154":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":11,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"77":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"116":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"y":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"131":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"109":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":3,"docs":{"106":{"tf":1.0},"140":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":2.449489742783178},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"113":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":2.0},"130":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"74":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"37":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":2.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"1":{"df":4,"docs":{"121":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"139":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"60":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"147":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"134":{"tf":1.4142135623730951},"21":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"150":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":2.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"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":{"151":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":1,"docs":{"142":{"tf":1.0}},"f":{"df":1,"docs":{"53":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":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":{"126":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.8284271247461903},"86":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"55":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.6457513110645907},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"90":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":67,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"59":{"tf":1.0},"75":{"tf":1.0},"93":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":2.23606797749979},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":2.6457513110645907},"75":{"tf":2.23606797749979},"77":{"tf":3.605551275463989},"79":{"tf":1.0},"86":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{}},"v":{"df":0,"docs":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":3,"docs":{"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"119":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"103":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":2.0},"152":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"w":{"df":6,"docs":{"109":{"tf":2.0},"143":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":2,"docs":{"115":{"tf":1.0},"50":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"147":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"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":{"c":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"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":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"50":{"tf":1.0}}},"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.23606797749979},"142":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":3.1622776601683795},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"149":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"55":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":2,"docs":{"111":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.0},"45":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"35":{"tf":2.23606797749979},"75":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"45":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0}}}},"g":{"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"17":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"60":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"31":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"66":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"116":{"tf":1.0},"68":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"147":{"tf":1.0},"44":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"151":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"84":{"tf":1.0}},"t":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":3.3166247903554},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":2.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":2,"docs":{"122":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":16,"docs":{"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"150":{"tf":2.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"110":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"135":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"68":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":2,"docs":{"116":{"tf":1.0},"66":{"tf":2.0}}}},"i":{"d":{"df":37,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":19,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"126":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"100":{"tf":1.0},"109":{"tf":1.0},"39":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"144":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"d":{"df":2,"docs":{"138":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"127":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"147":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.0},"137":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":3,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"106":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"21":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"29":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"147":{"tf":4.358898943540674},"44":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"23":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":29,"docs":{"100":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":4.69041575982343},"7":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":3.0},"52":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"114":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.0},"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.4142135623730951},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"126":{"tf":1.0},"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"125":{"tf":1.0},"21":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.0},"86":{"tf":2.449489742783178},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":2.23606797749979},"56":{"tf":1.0}}}}}},"df":1,"docs":{"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"109":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"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":{"110":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.7320508075688772},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"56":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":2.6457513110645907}}},"w":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"10":{"tf":2.0},"100":{"tf":3.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":4.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"147":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"v":{"df":1,"docs":{"149":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"57":{"tf":1.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"114":{"tf":1.0},"147":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"46":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"109":{"tf":1.0},"112":{"tf":2.0},"45":{"tf":3.872983346207417},"68":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"155":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"103":{"tf":1.0},"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.0},"64":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"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":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":1.0},"57":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":2.0},"132":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"65":{"tf":1.0},"86":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"145":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"143":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":22,"docs":{"100":{"tf":2.23606797749979},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"149":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":6,"docs":{"45":{"tf":2.0},"49":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"33":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":21,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.0},"143":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"115":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"60":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":2.0}}}}},"l":{"df":1,"docs":{"118":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":3.1622776601683795},"65":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"114":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"76":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"115":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":24,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"86":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":3.0},"49":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"105":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772},"79":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"100":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"120":{"tf":1.0}}}}},"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":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"126":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"100":{"tf":2.0},"114":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":77,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"56":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.0},"65":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"b":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"109":{"tf":2.0},"42":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"47":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"132":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":2.449489742783178},"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"61":{"tf":1.0}}}},"r":{"df":4,"docs":{"116":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0}}},"v":{"df":4,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"145":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"146":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"40":{"tf":1.0},"82":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"142":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903},"59":{"tf":2.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":8,"docs":{"109":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795},"61":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}},"v":{"df":4,"docs":{"149":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}}},"z":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951}},"x":{"1":{"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"144":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"65":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"3":{"9":{"4":{"3":{"4":{"0":{"3":{"9":{"4":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"8":{"7":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":3.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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.4142135623730951},"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":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"^":{"1":{"2":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.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},"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":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":47,"docs":{"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.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"138":{"tf":2.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}}},"5":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"1":{"df":1,"docs":{"99":{"tf":1.0}}},"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":1,"docs":{"82":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":1,"docs":{"109":{"tf":1.0}}},"9":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"100":{"tf":1.0},"30":{"tf":3.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"107":{"tf":1.0},"58":{"tf":1.0},"86":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":3.3166247903554},"120":{"tf":2.0},"123":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":3.605551275463989},"80":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"119":{"tf":2.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0}}}},"v":{"df":8,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"109":{"tf":1.0},"59":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"r":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.7320508075688772},"147":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"45":{"tf":2.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":40,"docs":{"54":{"tf":2.0},"55":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"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.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"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":8,"docs":{"105":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":2.0}}},"df":0,"docs":{},"w":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"149":{"tf":1.0},"60":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":2.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"z":{"df":2,"docs":{"147":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":49,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"46":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"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":{}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"49":{"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":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":11,"docs":{"111":{"tf":2.23606797749979},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"137":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":2.0}}},"p":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.7416573867739413}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"118":{"tf":1.4142135623730951},"132":{"tf":1.0},"29":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"131":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"78":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"17":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"14":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"107":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"r":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":2.0},"134":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.0}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"1":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"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},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"119":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"39":{"tf":2.23606797749979},"74":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"147":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"146":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"45":{"tf":3.3166247903554},"52":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.7320508075688772},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.0}}},"df":52,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.6457513110645907},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":2.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":4,"docs":{"25":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"61":{"tf":1.0},"77":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"126":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"126":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"144":{"tf":1.7320508075688772}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"114":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":21,"docs":{"0":{"tf":2.23606797749979},"114":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"68":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"150":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"h":{"df":1,"docs":{"52":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"30":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":2.23606797749979}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":3.0},"120":{"tf":2.6457513110645907},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"147":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":2.0}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"126":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"59":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.449489742783178},"21":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"132":{"tf":3.3166247903554},"31":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":2.23606797749979},"147":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"32":{"tf":1.7320508075688772},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"108":{"tf":1.7320508075688772},"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},"119":{"tf":1.4142135623730951},"55":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"151":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"155":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}},"s":{"df":5,"docs":{"130":{"tf":1.0},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"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":2,"docs":{"147":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"151":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"134":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":3,"docs":{"119":{"tf":1.0},"45":{"tf":1.0},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"147":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"109":{"tf":2.0},"142":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"131":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"68":{"tf":2.0}}},"df":38,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":3.4641016151377544},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":4.69041575982343},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":2.23606797749979},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":3.1622776601683795},"120":{"tf":2.0},"123":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"64":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.0},"73":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"154":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"132":{"tf":1.0},"60":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"101":{"tf":2.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0}}}},"t":{"a":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"116":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":2.23606797749979}},"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":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"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":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"47":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"149":{"tf":2.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"91":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"i":{"df":45,"docs":{"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":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":14,"docs":{"119":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":2.0},"95":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":17,"docs":{"108":{"tf":1.7320508075688772},"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},"149":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":2.0},"99":{"tf":1.0}}}},"r":{"df":2,"docs":{"152":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":39,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":2.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"59":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"68":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"91":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"2":{"df":1,"docs":{"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"120":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":2.0}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"39":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":2.23606797749979},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"86":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"t":{"df":3,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"147":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"71":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"126":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"72":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":2,"docs":{"107":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"130":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"143":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"130":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"122":{"tf":1.0},"132":{"tf":1.0}},"i":{"df":7,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"138":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"140":{"tf":1.0}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"57":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"57":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":4,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"131":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":8,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"147":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"45":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"100":{"tf":1.0},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"df":26,"docs":{"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":3.1622776601683795},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"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":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"121":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"31":{"tf":2.449489742783178},"36":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.6457513110645907},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":2,"docs":{"125":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":2.23606797749979},"119":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"146":{"tf":1.7320508075688772},"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}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"150":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"77":{"tf":3.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"151":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"90":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.7320508075688772},"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":5,"docs":{"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"113":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.7320508075688772},"147":{"tf":1.0},"85":{"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":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"109":{"tf":1.0},"74":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"57":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"r":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"144":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"75":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"115":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"41":{"tf":1.0}},"t":{"df":60,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"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},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"154":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":11,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"77":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"116":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"y":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.8284271247461903},"131":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"109":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"14":{"tf":1.0},"46":{"tf":2.23606797749979},"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},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"147":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.23606797749979}}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":3,"docs":{"106":{"tf":1.0},"140":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":2.449489742783178},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"113":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":2.0},"130":{"tf":2.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"74":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"37":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"1":{"df":45,"docs":{"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.4142135623730951},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"139":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"60":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"147":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"134":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"134":{"tf":1.7320508075688772},"21":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":2.0},"30":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"150":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":2.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"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":{"151":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":1,"docs":{"142":{"tf":1.0}},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":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":{"126":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"86":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"137":{"tf":1.7320508075688772},"23":{"tf":2.0},"5":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"39":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"90":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":99,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":2.6457513110645907},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"3":{"tf":2.449489742783178},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.1622776601683795},"67":{"tf":1.4142135623730951},"68":{"tf":3.4641016151377544},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"90":{"tf":2.449489742783178},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"59":{"tf":1.0},"75":{"tf":1.0},"93":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":114,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"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.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.0},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"77":{"tf":3.872983346207417},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"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":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":2.449489742783178},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{}},"v":{"df":0,"docs":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":3,"docs":{"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"119":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"103":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":2.0},"152":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"w":{"df":6,"docs":{"109":{"tf":2.0},"143":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.0},"11":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":2,"docs":{"115":{"tf":1.0},"50":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"147":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"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":{"c":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"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":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"50":{"tf":1.0}}},"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"142":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":3.1622776601683795},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"149":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"55":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":2,"docs":{"111":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.0},"45":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":2.0},"21":{"tf":1.0},"35":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"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},"119":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":2.0}}}}}}},"y":{"df":1,"docs":{"45":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0}}}},"g":{"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"17":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":2.8284271247461903},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"66":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"116":{"tf":1.0},"68":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"147":{"tf":1.0},"44":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"151":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"84":{"tf":1.0}},"t":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":3.4641016151377544},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"55":{"tf":2.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":2,"docs":{"122":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":24,"docs":{"138":{"tf":2.23606797749979},"139":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":2.23606797749979},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"110":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"36":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"68":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":2,"docs":{"116":{"tf":1.0},"66":{"tf":2.23606797749979}}}},"i":{"d":{"df":37,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":19,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"126":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"100":{"tf":1.0},"109":{"tf":1.0},"39":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"144":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"d":{"df":2,"docs":{"138":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"127":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"139":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"32":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"147":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.0},"137":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":3,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"106":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"21":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"29":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":2.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},"147":{"tf":4.47213595499958},"44":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"23":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":29,"docs":{"100":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":4.69041575982343},"7":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"114":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":2.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.23606797749979},"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"36":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.4142135623730951},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"126":{"tf":1.0},"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"125":{"tf":1.0},"21":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.0},"86":{"tf":2.449489742783178},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":2.449489742783178},"56":{"tf":1.0}}}}}},"df":1,"docs":{"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"109":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"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":{"110":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.7320508075688772},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"56":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":2.6457513110645907}}},"w":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":3.1622776601683795},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":4.242640687119285},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"147":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"v":{"df":1,"docs":{"149":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"57":{"tf":1.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.6457513110645907}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"114":{"tf":1.0},"147":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"46":{"tf":2.23606797749979},"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},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"109":{"tf":1.0},"112":{"tf":2.23606797749979},"45":{"tf":3.872983346207417},"68":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"155":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"103":{"tf":1.0},"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"60":{"tf":1.0},"64":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"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":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":1.0},"57":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":2.0},"132":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"65":{"tf":1.0},"86":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"145":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.7320508075688772},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":2.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":17,"docs":{"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":33,"docs":{"100":{"tf":2.23606797749979},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"149":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":6,"docs":{"45":{"tf":2.0},"49":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"33":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":21,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"76":{"tf":2.23606797749979},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.0},"143":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"115":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"60":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":2.0}}}}},"l":{"df":1,"docs":{"118":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":3.3166247903554},"65":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"114":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"76":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"115":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":24,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":2.6457513110645907},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"86":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":3.0},"49":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"105":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772},"79":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"100":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"120":{"tf":1.0}}}}},"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":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"86":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"126":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"100":{"tf":2.0},"114":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":77,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"56":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.0},"65":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"b":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"109":{"tf":2.0},"42":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"47":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"132":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":2.449489742783178},"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"6":{"tf":1.4142135623730951},"65":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"61":{"tf":1.0}}}},"r":{"df":4,"docs":{"116":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0}}},"v":{"df":4,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":156,"docs":{"0":{"tf":1.0},"1":{"tf":2.23606797749979},"10":{"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},"11":{"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},"12":{"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},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"14":{"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},"15":{"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},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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},"7":{"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.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"145":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"146":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"40":{"tf":1.0},"82":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"142":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903},"59":{"tf":2.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":8,"docs":{"109":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795},"61":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}},"v":{"df":4,"docs":{"149":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}}},"z":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"2":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}},"3":{"df":1,"docs":{"93":{"tf":1.0}}},"4":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"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":{"133":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"124":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"120":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"41":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"142":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"107":{"tf":1.0}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"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":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"m":{"1":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"131":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"69":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"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":{"120":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"151":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"116":{"tf":1.0},"135":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"41":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"50":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":5,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"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/book/book/searchindex.json b/book/book/searchindex.json index 5692e66..3e1e4fb 100644 --- a/book/book/searchindex.json +++ b/book/book/searchindex.json @@ -1 +1 @@ -{"doc_urls":["Prologue.html#building-with-movement","week_1/week_1.html#week-1-introduction-to-move-and-movement","week_1/Inro_to_move.html#introduction-to-move-and-movement","week_1/Inro_to_move.html#libradiem","week_1/Inro_to_move.html#resource-orientation-and-the-blockchain","week_1/Inro_to_move.html#stack-model-programming-and-function-ownership","week_1/Inro_to_move.html#access-restriction-all-the-way-down","week_1/Inro_to_move.html#type-linearity-and-ownership","week_1/Inro_to_move.html#double-spending","week_1/Inro_to_move.html#virtual-machines-and-the-blockchain","week_1/Inro_to_move.html#smart-contracts-nodes-running-the-same-logic","week_1/Inro_to_move.html#verification-nodes-talking-about-running-the-same-logic","week_1/Inro_to_move.html#virtual-machine-makes-sure-the-same-logic-is-the-same-logic","week_1/Inro_to_move.html#move-virtual-machines","week_1/Inro_to_move.html#limitations-and-movement","week_1/Developer_setup.html#developer-setup","week_1/Developer_setup.html#the-move-ecosystem","week_1/Developer_setup.html#virtual-machines","week_1/Developer_setup.html#clis","week_1/Developer_setup.html#package-managers","week_1/Developer_setup.html#ide","week_1/Developer_setup.html#our-setup","week_1/Basic_move_syntax.html#basic-move-syntax","week_1/Basic_move_syntax.html#allocation-and-the-move-memory-model","week_1/Basic_move_syntax.html#expressions-and-control-flow","week_1/Basic_move_syntax.html#expressions","week_1/Basic_move_syntax.html#if","week_1/Basic_move_syntax.html#while-and-loop","week_1/Basic_move_syntax.html#types","week_1/Basic_move_syntax.html#primitives","week_1/Basic_move_syntax.html#abilities","week_1/Basic_move_syntax.html#generic-and-behavior","week_1/Basic_move_syntax.html#resources-references-and-mutation","week_1/Basic_move_syntax.html#misc-syntax","week_1/Module_and_build_system.html#modules-and-build-system","week_1/Module_and_build_system.html#packages","week_1/Module_and_build_system.html#program-types","week_1/Module_and_build_system.html#modules","week_1/Module_and_build_system.html#scripts","week_1/Module_and_build_system.html#building","week_1/Module_and_build_system.html#named_addresses","week_1/Debugging_basics.html#debugging-basic-smart-contracts","week_1/Debugging_basics.html#-helloworld","week_1/Debugging_basics.html#-fib","week_1/Debugging_basics.html#-resourceroulette","week_1/Movement_standard_library.html#movement-standard-library","week_1/Movement_standard_library.html#stddebug-and-aptos_stddebug","week_1/Movement_standard_library.html#stdvector-and-aptos_stdbig_vector","week_1/Movement_standard_library.html#aptos_stdtable","week_1/Movement_standard_library.html#stdoption","week_1/Movement_standard_library.html#aptos_framworkresource_account","week_1/Movement_standard_library.html#-resourceroulette-pt-2","week_1/Movement_standard_library.html#-minifs","week_2/week_2.html#week-2-advanced-move-and-move-for-movement","week_2/Generics.html#generics-type-constraints-and-polymorphism","week_2/Generics.html#generics","week_2/Generics.html#move-does-not-support-subtyping-or-composable-type-constraints","week_2/Generics.html#the-four-type-abilities-copy-drop-store-and-key","week_2/Generics.html#storage-polymorphism","week_2/Generics.html#unused-and-phantom-types","week_2/Generics.html#-movenav","week_2/Generics.html#the-future-of-move-type-programming","week_2/Safety.html#safety","week_2/Safety.html#linear-logic","week_2/Safety.html#move-type-system","week_2/Safety.html#the-move-prover","week_2/Intro_smart_contracts.html#introduction-to-smart-contracts","week_2/Intro_smart_contracts.html#origins-of-smart-contracts","week_2/Intro_smart_contracts.html#comparison--multicontractfib","week_2/Intro_smart_contracts.html#solidity","week_2/Intro_smart_contracts.html#anchor","week_2/Intro_smart_contracts.html#movement","week_2/Testing.html#testing","week_2/Testing.html#movement-profile-configuration","week_2/Testing.html#automated-testing","week_2/Testing.html#manual-testing","week_2/Testing.html#with-movement","week_2/Testing.html#semi-automation","week_2/Testing.html#mocks-stubs-and-state-based-simulation","week_2/Testing.html#mocks-and-stubs","week_2/Testing.html#state-based-simulation","week_2/Testing.html#for-movement","week_2/Design_patterns.html#design-patterns","week_2/Development_staging.html#smart-contracts-development-and-staging","week_2/Development_staging.html#development","week_2/Development_staging.html#move","week_2/Development_staging.html#movement","week_2/Development_staging.html#staging","week_3/week_3.html#week-3-m1-and-defi-applications","week_3/Deploying_on_M1.html#deploying-on-m1","week_3/Deploying_on_M1.html#-multicontractfib","week_3/Security.html#security","week_3/Security.html#m1","week_3/Security.html#attack-surface","week_3/Security.html#blockchain","week_3/Security.html#smart-contracts","week_3/Security.html#dapps","week_3/Security.html#handling-user-data","week_3/Security.html#data-minimization","week_3/Security.html#access-control","week_3/Security.html#encryption","week_3/Security.html#pseudonymization","week_3/Security.html#dos","week_3/Common_blockchain_system_design_patterns.html#common-blockchain-system-design-patterns","week_3/Common_blockchain_system_design_patterns.html#oracles","week_3/Common_blockchain_system_design_patterns.html#rollups","week_3/Common_blockchain_system_design_patterns.html#tokenization","week_3/Common_blockchain_system_design_patterns.html#state-channels","week_3/Common_blockchain_system_design_patterns.html#side-chains","week_3/Common_blockchain_system_design_patterns.html#collaborative-governance","week_3/Common_blockchain_system_design_patterns.html#atomic-swaps","week_3/Common_blockchain_system_design_patterns.html#proofs-and-zero-knowledge","week_3/Access_control.html#access-control","week_3/Access_control.html#signatures-and-certificates","week_3/Access_control.html#acls-rbac-and-abac","week_3/Access_control.html#permissioned-chains","week_3/DeFi.html#defi","week_3/DeFi.html#what-is-defi","week_3/DeFi.html#why-decentralize","week_3/DeFi.html#financial-applications-of-decentralized-systems","week_3/DeFi.html#purchasing","week_3/DeFi.html#lending","week_3/DeFi.html#trading","week_3/DeFi.html#defi-phenomena","week_3/DeFi.html#yield-farming","week_3/DeFi.html#flash-loans","week_3/DeFi.html#automated-market-making","week_3/DeFi.html#coins","week_3/DeFi.html#important-defi-algorithms","week_3/DeFi.html#constant-product-market-maker-cpmm-and-constant-mean-market-maker-cmmm","week_3/DeFi.html#fraud-proof-and-binary-search","week_3/DeFi.html#modern-portfolio-theory-mpt","week_3/DeFi.html#risk-models","week_4/week_4.html#week-4-projects","week_4/Project_requirements_and_recommendations.html#project-requirements-and-recommendations","week_4/Project_requirements_and_recommendations.html#requirements","week_4/Project_requirements_and_recommendations.html#project-recommendations","week_4/Project_requirements_and_recommendations.html#dapps","week_4/Project_requirements_and_recommendations.html#infrastructure","week_4/Project_requirements_and_recommendations.html#bounties","week_4/Project_requirements_and_recommendations.html#contribute","week_4/Guidelines.html#guidelines","week_4/Guidelines.html#requirements-gathering","week_4/Guidelines.html#pitching-and-presenting","week_4/Guidelines.html#crafting-a-paper-and-deck","week_4/Guidelines.html#the-pitch","week_4/Guidelines.html#the-presentation","week_4/Guidelines.html#support","week_4/Guidelines.html#general-outreach","week_4/Guidelines.html#bugs","week_4/Next_steps.html#next-steps"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":4,"title":2},"1":{"body":30,"breadcrumbs":10,"title":5},"10":{"body":47,"breadcrumbs":13,"title":6},"100":{"body":17,"breadcrumbs":7,"title":1},"101":{"body":21,"breadcrumbs":7,"title":1},"102":{"body":52,"breadcrumbs":7,"title":1},"103":{"body":0,"breadcrumbs":15,"title":5},"104":{"body":174,"breadcrumbs":11,"title":1},"105":{"body":58,"breadcrumbs":11,"title":1},"106":{"body":67,"breadcrumbs":11,"title":1},"107":{"body":40,"breadcrumbs":12,"title":2},"108":{"body":43,"breadcrumbs":12,"title":2},"109":{"body":62,"breadcrumbs":12,"title":2},"11":{"body":36,"breadcrumbs":13,"title":6},"110":{"body":43,"breadcrumbs":12,"title":2},"111":{"body":59,"breadcrumbs":13,"title":3},"112":{"body":12,"breadcrumbs":9,"title":2},"113":{"body":67,"breadcrumbs":9,"title":2},"114":{"body":119,"breadcrumbs":10,"title":3},"115":{"body":68,"breadcrumbs":9,"title":2},"116":{"body":13,"breadcrumbs":7,"title":1},"117":{"body":35,"breadcrumbs":7,"title":1},"118":{"body":35,"breadcrumbs":7,"title":1},"119":{"body":0,"breadcrumbs":10,"title":4},"12":{"body":45,"breadcrumbs":15,"title":8},"120":{"body":17,"breadcrumbs":7,"title":1},"121":{"body":235,"breadcrumbs":7,"title":1},"122":{"body":23,"breadcrumbs":7,"title":1},"123":{"body":0,"breadcrumbs":8,"title":2},"124":{"body":27,"breadcrumbs":8,"title":2},"125":{"body":22,"breadcrumbs":8,"title":2},"126":{"body":37,"breadcrumbs":9,"title":3},"127":{"body":146,"breadcrumbs":7,"title":1},"128":{"body":0,"breadcrumbs":9,"title":3},"129":{"body":12,"breadcrumbs":16,"title":10},"13":{"body":38,"breadcrumbs":10,"title":3},"130":{"body":18,"breadcrumbs":10,"title":4},"131":{"body":14,"breadcrumbs":10,"title":4},"132":{"body":16,"breadcrumbs":8,"title":2},"133":{"body":18,"breadcrumbs":6,"title":3},"134":{"body":15,"breadcrumbs":9,"title":3},"135":{"body":26,"breadcrumbs":7,"title":1},"136":{"body":15,"breadcrumbs":8,"title":2},"137":{"body":34,"breadcrumbs":7,"title":1},"138":{"body":52,"breadcrumbs":7,"title":1},"139":{"body":34,"breadcrumbs":7,"title":1},"14":{"body":63,"breadcrumbs":9,"title":2},"140":{"body":25,"breadcrumbs":7,"title":1},"141":{"body":11,"breadcrumbs":5,"title":1},"142":{"body":233,"breadcrumbs":6,"title":2},"143":{"body":0,"breadcrumbs":6,"title":2},"144":{"body":55,"breadcrumbs":7,"title":3},"145":{"body":48,"breadcrumbs":5,"title":1},"146":{"body":64,"breadcrumbs":5,"title":1},"147":{"body":12,"breadcrumbs":5,"title":1},"148":{"body":13,"breadcrumbs":6,"title":2},"149":{"body":11,"breadcrumbs":5,"title":1},"15":{"body":13,"breadcrumbs":9,"title":2},"150":{"body":10,"breadcrumbs":7,"title":2},"16":{"body":17,"breadcrumbs":9,"title":2},"17":{"body":64,"breadcrumbs":9,"title":2},"18":{"body":31,"breadcrumbs":8,"title":1},"19":{"body":42,"breadcrumbs":9,"title":2},"2":{"body":11,"breadcrumbs":10,"title":3},"20":{"body":21,"breadcrumbs":8,"title":1},"21":{"body":80,"breadcrumbs":8,"title":1},"22":{"body":22,"breadcrumbs":11,"title":3},"23":{"body":68,"breadcrumbs":12,"title":4},"24":{"body":0,"breadcrumbs":11,"title":3},"25":{"body":13,"breadcrumbs":9,"title":1},"26":{"body":42,"breadcrumbs":8,"title":0},"27":{"body":23,"breadcrumbs":9,"title":1},"28":{"body":0,"breadcrumbs":9,"title":1},"29":{"body":37,"breadcrumbs":9,"title":1},"3":{"body":68,"breadcrumbs":8,"title":1},"30":{"body":68,"breadcrumbs":9,"title":1},"31":{"body":55,"breadcrumbs":10,"title":2},"32":{"body":71,"breadcrumbs":11,"title":3},"33":{"body":28,"breadcrumbs":10,"title":2},"34":{"body":8,"breadcrumbs":11,"title":3},"35":{"body":59,"breadcrumbs":9,"title":1},"36":{"body":25,"breadcrumbs":10,"title":2},"37":{"body":26,"breadcrumbs":9,"title":1},"38":{"body":22,"breadcrumbs":9,"title":1},"39":{"body":146,"breadcrumbs":9,"title":1},"4":{"body":23,"breadcrumbs":10,"title":3},"40":{"body":28,"breadcrumbs":9,"title":1},"41":{"body":11,"breadcrumbs":13,"title":4},"42":{"body":49,"breadcrumbs":10,"title":1},"43":{"body":14,"breadcrumbs":10,"title":1},"44":{"body":168,"breadcrumbs":10,"title":1},"45":{"body":24,"breadcrumbs":11,"title":3},"46":{"body":62,"breadcrumbs":10,"title":2},"47":{"body":10,"breadcrumbs":10,"title":2},"48":{"body":34,"breadcrumbs":9,"title":1},"49":{"body":31,"breadcrumbs":9,"title":1},"5":{"body":91,"breadcrumbs":12,"title":5},"50":{"body":17,"breadcrumbs":9,"title":1},"51":{"body":30,"breadcrumbs":11,"title":3},"52":{"body":17,"breadcrumbs":9,"title":1},"53":{"body":20,"breadcrumbs":12,"title":6},"54":{"body":31,"breadcrumbs":14,"title":4},"55":{"body":76,"breadcrumbs":11,"title":1},"56":{"body":173,"breadcrumbs":16,"title":6},"57":{"body":116,"breadcrumbs":17,"title":7},"58":{"body":208,"breadcrumbs":12,"title":2},"59":{"body":132,"breadcrumbs":13,"title":3},"6":{"body":38,"breadcrumbs":11,"title":4},"60":{"body":139,"breadcrumbs":11,"title":1},"61":{"body":13,"breadcrumbs":14,"title":4},"62":{"body":21,"breadcrumbs":8,"title":1},"63":{"body":31,"breadcrumbs":9,"title":2},"64":{"body":86,"breadcrumbs":10,"title":3},"65":{"body":70,"breadcrumbs":9,"title":2},"66":{"body":0,"breadcrumbs":12,"title":3},"67":{"body":397,"breadcrumbs":12,"title":3},"68":{"body":27,"breadcrumbs":11,"title":2},"69":{"body":26,"breadcrumbs":10,"title":1},"7":{"body":35,"breadcrumbs":10,"title":3},"70":{"body":28,"breadcrumbs":10,"title":1},"71":{"body":9,"breadcrumbs":10,"title":1},"72":{"body":15,"breadcrumbs":8,"title":1},"73":{"body":87,"breadcrumbs":10,"title":3},"74":{"body":117,"breadcrumbs":9,"title":2},"75":{"body":36,"breadcrumbs":9,"title":2},"76":{"body":184,"breadcrumbs":8,"title":1},"77":{"body":27,"breadcrumbs":9,"title":2},"78":{"body":17,"breadcrumbs":12,"title":5},"79":{"body":97,"breadcrumbs":9,"title":2},"8":{"body":41,"breadcrumbs":9,"title":2},"80":{"body":37,"breadcrumbs":10,"title":3},"81":{"body":131,"breadcrumbs":8,"title":1},"82":{"body":17,"breadcrumbs":10,"title":2},"83":{"body":0,"breadcrumbs":14,"title":4},"84":{"body":10,"breadcrumbs":11,"title":1},"85":{"body":63,"breadcrumbs":11,"title":1},"86":{"body":28,"breadcrumbs":11,"title":1},"87":{"body":35,"breadcrumbs":11,"title":1},"88":{"body":11,"breadcrumbs":10,"title":5},"89":{"body":38,"breadcrumbs":9,"title":2},"9":{"body":24,"breadcrumbs":10,"title":3},"90":{"body":24,"breadcrumbs":8,"title":1},"91":{"body":17,"breadcrumbs":7,"title":1},"92":{"body":23,"breadcrumbs":7,"title":1},"93":{"body":0,"breadcrumbs":8,"title":2},"94":{"body":98,"breadcrumbs":7,"title":1},"95":{"body":130,"breadcrumbs":8,"title":2},"96":{"body":23,"breadcrumbs":7,"title":1},"97":{"body":0,"breadcrumbs":9,"title":3},"98":{"body":16,"breadcrumbs":8,"title":2},"99":{"body":43,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Welcome to Building with Movement ! Over the course of this booklet, we will be addressing topics related to developing for the Movement blockchain. This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time. By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages. If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz .","breadcrumbs":"Building with Movement » Building with Movement","id":"0","title":"Building with Movement"},"1":{"body":"This week kicks off our exploration of the Move language and Movement ecosystem. We will begin by introducing Move, setting up an appropriate developer environment, and covering the basics of the Move language. Many of the topics concerning the move language will be revisited in greater depth during Week 2.","breadcrumbs":"Week 1: Introduction to Move and Movement » Week 1: Introduction to Move and Movement","id":"1","title":"Week 1: Introduction to Move and Movement"},"10":{"body":"Smart contracts are self-executing agreements with predefined conditions encoded in code. In the blockchain context, smart contracts are executed by nodes across the network. Virtual machines, such as the Move Virtual Machine (Move VM) used in the Move programming language, ensure that all nodes interpret and execute the smart contract code uniformly. This guarantees that the same logic is executed across the network, promoting trust and enabling reliable transaction execution.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Smart Contracts: Nodes Running the Same Logic","id":"10","title":"Smart Contracts: Nodes Running the Same Logic"},"100":{"body":"Sensitive user data stored in the blockchain or associated systems should be encrypted to protect it from unauthorized access. Encryption algorithms and protocols should be carefully chosen and implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Encryption","id":"100","title":"Encryption"},"101":{"body":"To enhance privacy, blockchain applications can pseudonymize user data by replacing personally identifiable information with pseudonyms or cryptographic identifiers. This makes it difficult to directly link user identities to their data.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Pseudonymization","id":"101","title":"Pseudonymization"},"102":{"body":"Denial-of-Service (DoS) attacks aim to disrupt the availability of a blockchain application or the entire network by overwhelming the system with an excessive amount of requests or by exploiting vulnerabilities in the network's infrastructure. DoS attacks can result in service unavailability or degradation, impacting the application's functionality and user experience. Implementing robust DoS mitigation strategies is essential to protect against such attacks. As mentioned above, Avalanche's adaptive security approach it difficult to successfully deny network service.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » DoS","id":"102","title":"DoS"},"103":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Common blockchain system design patterns","id":"103","title":"Common blockchain system design patterns"},"104":{"body":"Oracles play a crucial role in blockchain applications by providing a bridge between the blockchain and the external world. They are trusted entities or mechanisms that bring off-chain data onto the blockchain, making it accessible to smart contracts and decentralized applications. Oracles enable the blockchain to interact with real-world events, data feeds, APIs, and other external systems. By leveraging oracles, blockchain applications can access and process external information in a reliable and secure manner. We built 💻 NewsMoves, examples/movement/new_moves, as a toy oracle contract that allows a trusted entity to write the latest Google news articles onto the blockchain. Please checkout the directory to publish the contract and run the Python data entity. module news_moves::news_moves { use std::signer; use std::vector; // Struct representing a news article entry struct Article has copy { timestamp: u64, title: vector, content: vector, } // NewsMoves struct representing the contract state struct NewsMoves { articles: vector
, } // Initialization function for the NewsMoves contract public fun init() { move_to(@news_moves, NewsMoves { articles: vector::empty
(), }); } public fun update( account: &signer, timestamp: u64, title: vector, content: vector, ) acquires NewsMoves { // update the contract at the account let account_addr = signer::address_of(account); let self = borrow_global_mut(account_addr); // add the new article vector::push_back(&mut self.articles, Article { timestamp: timestamp, title: title, content: content, }); } // Function to get the latest news article from the contract public fun getLatestArticle(): Article { // Get the latest article from the contrac let moves = borrow_global(@news_moves); let len = vector::length(&articles); assert(len > 0, 98); // Ensure there is at least one article let latestArticleIndex = len - 1; *moves.articles[latestArticleIndex] } }","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Oracles","id":"104","title":"Oracles"},"105":{"body":"Rollups are a layer 2 scaling solution for blockchains that aim to improve scalability and reduce transaction costs. They work by aggregating multiple transactions off-chain and then submitting a summary or proof of those transactions to the main chain. This reduces the burden on the main chain, allowing for faster and more efficient processing. Rollups can significantly increase transaction throughput and enable complex applications to run smoothly on the blockchain while maintaining a high level of security. We added a toy dispute mechanism 💻 NewsMoves, examples/movement/new_moves to demonstrate how part of a rollup could implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Rollups","id":"105","title":"Rollups"},"106":{"body":"Tokenization is the process of representing real-world or digital assets as tokens on a blockchain. It enables the creation of digital representations (tokens) that can be owned, transferred, and managed on the blockchain. Tokenization has broad applications, ranging from representing physical assets like real estate or artwork to creating digital assets like utility tokens or security tokens. By tokenizing assets, blockchain-based systems can provide increased liquidity, fractional ownership, and facilitate seamless transferability of assets in a secure and transparent manner. We implement a toy tokenization scheme and separately used our framework's aptos_token_objects to augment 💻 NewsMoves, examples/movement/new_moves and demonstrate Movement token utilities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Tokenization","id":"106","title":"Tokenization"},"107":{"body":"State channels are a scalability solution in blockchain that allows off-chain execution of transactions between participants. They enable fast and low-cost transactions by keeping most of the interactions off-chain, while the final state is settled on the main blockchain. State channels are particularly useful for frequent and fast interactions, such as microtransactions or gaming applications, as they reduce congestion and improve transaction throughput.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » State Channels","id":"107","title":"State Channels"},"108":{"body":"Side chains are separate blockchains that are connected to the main blockchain, often referred to as the \"main chain\" or \"parent chain.\" They provide an additional layer of scalability and flexibility by allowing specific use cases or applications to operate on their own chain while still being interoperable with the main chain. Side chains can handle transactions and smart contracts independently, reducing the load on the main chain and enabling specialized functionalities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Side Chains","id":"108","title":"Side Chains"},"109":{"body":"Collaborative governance refers to the process of making collective decisions and managing blockchain networks through the participation and collaboration of multiple stakeholders. It involves mechanisms such as voting, consensus-building, and community-driven decision-making to govern the rules, upgrades, and overall direction of a blockchain network. Collaborative governance aims to ensure inclusivity, transparency, and alignment of interests among network participants. aptos_framework::aptos_governance provides a host of out of the box tools for handling proposals, dynamic voting systems, and member rewards. Using it you can implement a DAO and tests in a about a thousand lines of code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Collaborative Governance","id":"109","title":"Collaborative Governance"},"11":{"body":"Verification is a critical aspect of the blockchain ecosystem. Nodes need to agree on the validity of transactions and smart contract execution. Virtual machines facilitate this verification process by providing a standardized environment where nodes can discuss and agree upon the execution of the same logic. By achieving consensus on the outcomes, nodes can ensure the integrity and consistency of the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Verification: Nodes Talking About Running the Same Logic","id":"11","title":"Verification: Nodes Talking About Running the Same Logic"},"110":{"body":"Atomic swaps are a mechanism that allows the exchange of different cryptocurrencies or digital assets between two parties without the need for an intermediary or trusted third party. It enables secure peer-to-peer transactions directly between participants, ensuring that either the entire transaction is executed or none of it occurs. Atomic swaps enhance interoperability and facilitate decentralized exchanges by eliminating the need for centralized intermediaries.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Atomic Swaps","id":"110","title":"Atomic Swaps"},"111":{"body":"Zero-knowledge proofs are cryptographic techniques that enable a party to prove knowledge of certain information without revealing the actual information itself. They allow for privacy-preserving transactions and interactions on the blockchain, where participants can validate the correctness of a statement or the possession of certain data without disclosing sensitive details. Zero-knowledge proofs enhance confidentiality and confidentiality in blockchain applications, ensuring that privacy-sensitive information remains secure while still being verifiable. At Movement, we're working on a Zero-Knowledge VM powered by the Move Prover.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Proofs and Zero-Knowledge","id":"111","title":"Proofs and Zero-Knowledge"},"112":{"body":"This section briefly covers some considerations of blockchain access control and highlights places where Movement and this repo may be helpful.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Access Control","id":"112","title":"Access Control"},"113":{"body":"Signatures and certificates play a crucial role in access control on the blockchain. They enable authentication and ensure that only authorized entities can perform specific actions or access certain resources. Signatures provide proof of ownership and authenticity, while certificates verify the identity and permissions of participants. By utilizing strong cryptographic signatures and certificates, blockchain applications can establish secure and tamper-proof access control mechanisms. Avalanche uses Transport Layer Security, TLS, to protect node-to-node communications from eavesdroppers. The Avalanche virtual machine uses elliptic curve cryptography, specifically secp256k1, for its signatures on the blockchain, and signs all messages.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Signatures and certificates","id":"113","title":"Signatures and certificates"},"114":{"body":"Access Control Lists (ACLs), Role-Based Access Control (RBAC), and Attribute-Based Access Control (ABAC) are common frameworks used to manage and enforce access control policies in blockchain applications. ACLs define permissions based on a list of entities and their associated access rights. RBAC assigns permissions to roles, allowing for more centralized management of access control. ABAC grants access based on attributes, such as user attributes or environmental conditions. Each framework has its strengths and can be tailored to meet specific access control requirements in a blockchain application. A common pattern in Move and Movement development is to assert a contract owner. Using named addresses, @named_address. script owner_address::important_script { const ERNO_OWNER_ONLY : u64 = 0 fun do_important_thing(signer : address){ assert!(signer == @owner_address, ERNO_OWNER_ONLY); // do thing... } } Manipulation of addresses often serves as the basis for Movement access control mechanisms. The Move language provides host of unique safe ways to implement access controls for resources. aptos_framework::aptos_governance provides an easy to use module for governance which can allow for decentralized managed of these control lists.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » ACLs, RBAC, and ABAC","id":"114","title":"ACLs, RBAC, and ABAC"},"115":{"body":"Permissioned chains are blockchain networks that restrict participation to authorized entities only. Unlike public or permissionless blockchains, permissioned chains require participants to obtain explicit permission or be part of a predefined set of trusted entities. Permissioned chains are often employed in enterprise or consortium settings, where privacy, confidentiality, and control over network participants are paramount. By leveraging permissioned chains, blockchain applications can enforce stricter access control and maintain a trusted network environment. While the Movement testnet is not a permissioned chain, our virtual machines strong access controls--due to the Move language--make it easy to restrict access to select resources.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Permissioned chains","id":"115","title":"Permissioned chains"},"116":{"body":"This section treats with a general overview DeFi problems and solution, and the faculties of Movement M1 to help create these solutions.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi","id":"116","title":"DeFi"},"117":{"body":"Decentralized Finance (DeFi) refers to a category of financial applications and platforms built on blockchain networks that aim to provide open, permissionless, and decentralized alternatives to traditional financial systems. DeFi leverages the transparency, immutability, and programmability of blockchain technology to enable financial activities without the need for intermediaries or centralized authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » What is DeFi?","id":"117","title":"What is DeFi?"},"118":{"body":"Decentralization in DeFi brings several advantages, including increased transparency, censorship resistance, improved accessibility, and reduced reliance on trusted third parties. By removing intermediaries and enabling peer-to-peer transactions, decentralization can enhance efficiency, reduce costs, and empower individuals to have more control over their financial activities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Why Decentralize?","id":"118","title":"Why Decentralize?"},"119":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Financial Applications of Decentralized Systems","id":"119","title":"Financial Applications of Decentralized Systems"},"12":{"body":"The virtual machine acts as an execution environment for smart contracts and other blockchain operations. It ensures that the same logic applied to a smart contract on one node is identical to the logic applied on every other node. This consistency is essential for achieving consensus and maintaining the immutability of the blockchain. Virtual machines, such as the Move VM, enforce the rules and protocols defined by the blockchain platform, allowing for secure and reliable execution of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual Machine: Makes Sure the Same Logic is the Same Logic","id":"12","title":"Virtual Machine: Makes Sure the Same Logic is the Same Logic"},"120":{"body":"Decentralized systems allow for the direct peer-to-peer purchase of digital assets, cryptocurrencies, and other goods or services without the need for intermediaries or central authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Purchasing","id":"120","title":"Purchasing"},"121":{"body":"DeFi platforms enable individuals to lend and borrow funds directly from other users through smart contracts, removing the need for traditional financial intermediaries such as banks. Check out examples/movement/gimme_mini for a toy implementation of both a direct and peer-pooled lending platform. // example supply function from gimme_mini direct lending platform\npublic fun supply( account: &signer, market_obj: Object, underlying_fa: FungibleAsset\n): FungibleAsset acquires Vault, Market { assert!( fungible_asset::asset_metadata(&underlying_fa) == fungible_asset::store_metadata(market_obj), ERR_MARKET_MISMATCH ); let underlying_amount = fungible_asset::amount(&underlying_fa); // update market fungible store fungible_asset::deposit(market_obj, underlying_fa); // mint ctoken let ctoken_amount = underlying_to_ctoken(market_obj, underlying_amount); let market = borrow_global_mut(object::object_address(&market_obj)); let ctoken = fungible_asset::mint(&market.ctoken_mint_ref, ctoken_amount); // update user vault init_vault_if_not_exists(account); let vault = borrow_global_mut(signer::address_of(account)); if (!vector::contains(&vault.collaterals, &market_obj)) { vector::push_back(&mut vault.collaterals, market_obj); }; ctoken\n} module peer_pooled_lend::peer_pooled_lend { use std::signer; friend mini_lend::LoanOfficer; /// Lends funds to liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough funds to lend. /// 2. Check for suspicious activity. /// 2. If account has enough funds to lend... /// 1. MiniLend will transfer funds from account to liquidity pool. public fun lend(account : signer, amount : u64){ // ... } /// Allows lender to seek repayment from liquidity pool. /// 1. LoanOfficer will... /// 1. Determine whether account is lender. /// 2. Determine loan period is up. /// 2. If the account is a valid lender and the loan period is up... /// 1. MiniLend will transfer funds from liquidity pool to account or self-collateralize. public fun seek_repayment(account : signer, amount : u64){ // ... } /// Borrows funds from liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough collateral /// 2. Check account credit. /// 3. If account has enough collateral and credit... /// 2. If account has enough collateral and credit... /// 1. MiniLend will borrow funds from liquidity pool /// 3. Whether or not the account will successully borrow funds, run the audit function. public fun borrow(account : signer, amount : u64){ // ... } public fun repay(account : signer, amount : u64){ // ... } /// Looks over loan tables and dispatches events to manage loans /// Anyone can call this function enabling decentralized book keeping. public fun audit(account : signer){ // ... } }","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Lending","id":"121","title":"Lending"},"122":{"body":"Decentralized exchanges (DEXs) facilitate trustless trading of digital assets directly between users, eliminating the need for centralized order books and custody of funds by intermediaries. Movement has an ready-made DEX.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Trading","id":"122","title":"Trading"},"123":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi Phenomena","id":"123","title":"DeFi Phenomena"},"124":{"body":"Yield farming involves leveraging various DeFi protocols to maximize returns on cryptocurrencies or digital assets by providing liquidity, staking, or participating in other activities to earn additional rewards. Check out examples/movement/yield_gardner for a toy implementation of a yield farmer.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Yield Farming","id":"124","title":"Yield Farming"},"125":{"body":"Flash loans are uncollateralized loans that allow users to borrow funds temporarily for specific transactions within a single blockchain transaction. They exploit the composability and fast transaction finality of smart contracts.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Flash Loans","id":"125","title":"Flash Loans"},"126":{"body":"Automated market makers (AMMs) are decentralized protocols that use mathematical formulas to determine asset prices and provide liquidity for trading. They have revolutionized liquidity provision in DeFi by eliminating the need for order books and enabling continuous trading. Check out examples/movement/gimme_mini for a toy implementation of a lending platform built atop the liquidswap AMM.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Automated Market Making","id":"126","title":"Automated Market Making"},"127":{"body":"Coins are typically created and recorded on the blockchain through a consensus mechanism, ensuring their authenticity and immutability. They can be transferred between participants on the network, used for transactions, and sometimes serve additional purposes such as voting rights or access to certain functionalities within decentralized applications (dApps) built on the blockchain. Coins play a fundamental role in enabling economic activity and incentivizing participation within the blockchain ecosystem. Movement provides built-in utilties to easily create and managed coins at varying levels of abstraction. // A managed coin.\n//:!:>sun\nmodule sun_coin::sun_coin { struct SunCoin {} fun init_module(sender: &signer) { aptos_framework::managed_coin::initialize( sender, b\"Sun Coin\", b\"SUN\", 6, false, ); }\n}\n//<:!:sun // Handling coin transactions\nscript { use aptos_framework::coin; use std::vector; // There are two ways to approach this problem // 1. Withdraw the total then distribute the pieces by breaking it up or // 2. Transfer for each amount individually fun main(sender: &signer, split : vector
, amount: u64) { let i = 0; let len = vector::length(split); let coins = coin::withdraw(sender, amount); while (i < len) { let coins_pt = coin::extract(&mut coins, amount / len); coin::deposit( vector::borrow(split, i), coins_pt ); }; }\n} Stablecoins are a type of coin that aims to maintain a stable value, typically pegged to a fiat currency like the US Dollar or a basket of assets. They provide price stability, making them suitable for various use cases within the decentralized finance ecosystem.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Coins","id":"127","title":"Coins"},"128":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Important DeFi Algorithms","id":"128","title":"Important DeFi Algorithms"},"129":{"body":"These algorithms are used in AMMs to maintain liquidity and determine prices based on the constant product or mean principles.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)","id":"129","title":"Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)"},"13":{"body":"Several implementations of the Move virtual machine exist, including the Move VM, Aptos VM, and Sui VM. These implementations provide alternative approaches to executing Move code and offer flexibility and compatibility with different blockchain platforms and ecosystems. Each implementation has its own characteristics, optimizations, and use cases, catering to diverse blockchain development requirements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Move Virtual Machines","id":"13","title":"Move Virtual Machines"},"130":{"body":"These algorithms enhance security in DeFi protocols by detecting and mitigating potential fraud or malicious activities. Binary search is often used to optimize search and validation processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Fraud Proof and Binary Search","id":"130","title":"Fraud Proof and Binary Search"},"131":{"body":"MPT is applied in DeFi to optimize asset allocation and portfolio management, considering risk, returns, and correlations among different assets.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Modern Portfolio Theory (MPT)","id":"131","title":"Modern Portfolio Theory (MPT)"},"132":{"body":"DeFi relies on various risk models and methodologies to assess and manage risks associated with lending, borrowing, and other financial activities in decentralized systems.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Risk Models","id":"132","title":"Risk Models"},"133":{"body":"Week 4 is all about building projects. If you're reading through this notebook outside of our hackathon, we hope you find the resources useful for building your first Movement project.","breadcrumbs":"Week 4: Projects » Week 4: Projects","id":"133","title":"Week 4: Projects"},"134":{"body":"In this section we discuss project requirements and recommendations. Many of the recommendations involve working on technologies that we're keen on developing and incubating for Movement!","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project Requirements and Recommendations","id":"134","title":"Project Requirements and Recommendations"},"135":{"body":"For all hackathon participants, we expect... a pitch deck, a paper, links to source developed during the hackathon. We've included templates for LaTeX and PPT in the templates/presentation folder. You will make five minute pitches using your deck at the end of the hackathon.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Requirements","id":"135","title":"Requirements"},"136":{"body":"There are a variety of ways to use and contribute to the Movement ecosystem. These include dApp development, infrastructure development, bounties, and direct contributions to our software.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project recommendations","id":"136","title":"Project recommendations"},"137":{"body":"The content of this course should have prepared you to work on dApps such as the following. Continue with 💻 GimmeMini, examples/movement/gimme_mini Continue with 💻 MiniDex, examples/movement/mini_dex. Create a mini oracle provider, rollup provider, or validator set management system. You may wish to continue from 💻 NewsMoves examples/movement/new_moves Decentralized Twitter clone. You may fish to continue from 💻 MyFirstDapp examples/movement/my_first_dapp.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » dApps","id":"137","title":"dApps"},"138":{"body":"We're all about continuing to build out the Movement ecosystem to empower more awesome developers like you. At the time of writing, the following are all things we have a close eye on. Connect a new wallet! Right now we only support Pontem on testnet. Create an L2 that allows us to deposit levered funds in another protocol. Create a framework for borrowing funds against an asset. Create a framework that allows for customizable liquidity strategies. Build integrations with Perp . Develop a stable swap with another subnet","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Infrastructure","id":"138","title":"Infrastructure"},"139":{"body":"We've also put together a zealy.io community. Some of our bounties include. Report UI/UX bug Report backend bug Deploy App with 100 unique smart contract interactions Community Award To 3 Most used dApps Screenshot using App Deploy project from Aptos / Sui Contribute to Champions","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Bounties","id":"139","title":"Bounties"},"14":{"body":"The transaction processing speed (TPS) of the underlying blockchain is a primary limitation on smart contract complexity. Higher TPS allows for more intricate and computationally intensive smart contracts to be executed within a given time frame. Movement facilitates a theoretical maximum TPS of 160,000 by combining the technologies of Move and Avalanche Snowball consensus. This scalability enhancement enables more sophisticated and resource-intensive smart contracts to be processed efficiently. In addition to its high TPS, Movement provides developer-friendly features via its Aptos-based VM and an ergonomic standard library .","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Limitations and Movement","id":"14","title":"Limitations and Movement"},"140":{"body":"We welcome contributions to our source, including the movement-hack repo from which this book is sourced. Generally speaking we encourage you to... Develop new starter code and example modules. Submit PRs against open issues. Improve documentation.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Contribute","id":"140","title":"Contribute"},"141":{"body":"This section outlines some best practices for the project and Movement success, as well as how to get in touch with the team for support.","breadcrumbs":"Week 4: Projects » Guidelines » Guidelines","id":"141","title":"Guidelines"},"142":{"body":"Requirements gathering is a critical phase in the software development process that involves capturing, analyzing, and documenting the needs and expectations of stakeholders. It lays the foundation for a successful project by ensuring a clear understanding of what needs to be built. Here are some steps for successful requirements gathering: Identify Stakeholders: Identify and involve all relevant stakeholders, including clients, end-users, subject matter experts, and other project team members. Each stakeholder brings unique perspectives and insights into the project requirements. Define the Scope: Clearly define the scope of the project by outlining its objectives, boundaries, and limitations. This helps set realistic expectations and ensures that the requirements gathering process remains focused. Conduct Interviews and Workshops: Engage in one-on-one interviews and group workshops with stakeholders to gather their input, understand their needs, and identify any existing challenges or pain points. Encourage open and honest communication to capture comprehensive requirements. Document Requirements: Document the gathered requirements in a structured manner, ensuring clarity, completeness, and traceability. Use techniques such as use cases, user stories, functional and non-functional requirements, and process flows to capture different aspects of the system. Validate and Verify: Validate the gathered requirements by reviewing them with stakeholders to ensure accuracy and alignment with their expectations. Seek their feedback and address any concerns or discrepancies. Verify the requirements against the project objectives and constraints. Prioritize Requirements: Prioritize the requirements based on their importance, urgency, and impact on project success. Collaborate with stakeholders to establish a clear understanding of the most critical and high-priority features. Iterate and Refine: Requirements gathering is an iterative process. Continuously refine and iterate the requirements based on feedback, changing project needs, and evolving stakeholder requirements. Regularly communicate and collaborate with stakeholders to ensure ongoing alignment. Remember, successful requirements gathering involves effective communication, active listening, and collaboration with stakeholders throughout the process. By following these steps, developers can gather comprehensive and accurate requirements that form a solid foundation for successful software development. If you require further assistance or guidance, feel free to reach out to Movement Labs using the contact information below in Support .","breadcrumbs":"Week 4: Projects » Guidelines » Requirements Gathering","id":"142","title":"Requirements Gathering"},"143":{"body":"","breadcrumbs":"Week 4: Projects » Guidelines » Pitching and presenting","id":"143","title":"Pitching and presenting"},"144":{"body":"Crafting a concise and visually appealing pitch deck is crucial for effectively presenting your small blockchain project at the end of a hackathon. Structure your deck to highlight the problem your project solves, the solution you've developed, the target market, and the unique value it offers. Emphasize the key features and benefits of your project, along with any notable achievements during the hackathon. Use clear and concise language, visual aids, and a consistent design to enhance the overall presentation. We've provided a templates for LaTeX and PPT in presentations/templates.","breadcrumbs":"Week 4: Projects » Guidelines » Crafting a paper and deck","id":"144","title":"Crafting a paper and deck"},"145":{"body":"During the pitch, focus on delivering a compelling and concise message that captures the attention of the judges and participants. Clearly articulate the problem your project addresses, the solution it provides, and how it leverages blockchain technology. Highlight the practical applications, benefits, and potential market opportunities of your project. Demonstrate how your project differentiates itself from existing solutions and how it aligns with the hackathon's theme or challenges. Be confident, enthusiastic, and passionate about your project, conveying the potential impact and value it brings.","breadcrumbs":"Week 4: Projects » Guidelines » The pitch","id":"145","title":"The pitch"},"146":{"body":"When delivering your presentation, aim for clarity, professionalism, and effective communication. Begin with a concise and attention-grabbing introduction to hook the audience. Provide a brief overview of your project's development process, focusing on the key milestones achieved during the hackathon. Showcase any live demos, prototypes, or working features of your project, demonstrating its functionality and value proposition. Highlight the technical aspects of your project, such as the blockchain technology used, any smart contracts implemented, and the scalability or security measures in place. Conclude your presentation with a compelling call-to-action, inviting the judges and participants to engage with your project and explore its potential.","breadcrumbs":"Week 4: Projects » Guidelines » The presentation","id":"146","title":"The presentation"},"147":{"body":"We're happy to support all developers on Movement. Whatever your problems, needs or desires, we hope we can help out.","breadcrumbs":"Week 4: Projects » Guidelines » Support","id":"147","title":"Support"},"148":{"body":"For general questions, comments, and concerns please email liam@movementlabs.xyz or open up a new discussion in movemntdev/movement-hack .","breadcrumbs":"Week 4: Projects » Guidelines » General outreach","id":"148","title":"General outreach"},"149":{"body":"If you believe you've identified a bug, please create an issue in movemntdev/movement-hack . We will triage accordingly.","breadcrumbs":"Week 4: Projects » Guidelines » Bugs","id":"149","title":"Bugs"},"15":{"body":"This section examines tooling and provides setup instructions for working with the Movement blockchain and the various examples in covered in this booklet.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Developer Setup","id":"15","title":"Developer Setup"},"150":{"body":"Now that you've completed this book and your projects, we invite you to provide your feedback and stay in touch!","breadcrumbs":"Week 4: Projects » Next Steps » Next Steps","id":"150","title":"Next Steps"},"16":{"body":"The budding Move ecosystem sports a variety of developer friendly tools. As we list off tools that will be relevant to this booklet, keep in mind that there are number of projects we have not included.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » The Move ecosystem","id":"16","title":"The Move ecosystem"},"17":{"body":"As previously discussed, there are several virtual machine implementations available for Move development--each of with is paired with particular blockchain. Besides the Movement VM, the most well-known Move virtual machines are Move VM, Aptos VM, and Sui VM We provide a comparison of these different virtual machines in our docs . When selecting a virtual machine for development its important to consider performance, ease of use, and stability. Aptos VM built upon the original and stable Move VM to provide an improved developer experience. The Movement VM builds upon Aptos VM to provide improved performance.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Virtual machines","id":"17","title":"Virtual machines"},"18":{"body":"There are three CLIs worth note in the Move language development space. All support building, testing, deploying, and running smart contracts. move : the original CLI for Move development. aptos: the CLI for Aptos development. movement : our very own CLI. In this booklet we will be working with move and movement.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » CLIs","id":"18","title":"CLIs"},"19":{"body":"Move has a package manager, movey . However, generally we will recommend adding dependencies directly to your Move.toml file. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Package managers","id":"19","title":"Package managers"},"2":{"body":"This section is intended to orient the reader on the history of the language and various Move virtual machine implementations.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Introduction to Move and Movement","id":"2","title":"Introduction to Move and Movement"},"20":{"body":"There are several useful development enviroments for Move. This book will be geared towards using VsCode because of the its developer container features and its Move analyzer . However, syntax highlighting has been implemented for other IDEs including Vim .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » IDE","id":"20","title":"IDE"},"21":{"body":"We'll be using the move and movement CLIs; no package manager; and VsCode most-often running the movement-dev Docker container from public.ecr.aws/c4i6k4r8/movement-dev . To get started... Clone the repo from which this book originates: https://github.com/movemntdev/movement-hack Open the repo in VsCode. Based on the advice provided for a given project, reopen the repo in one of move, movement-dev, anchor, or solidity devcontainers . Alternatively, when working with movement-dev you may: docker image pull public.ecr.aws/c4i6k4r8/movement-dev\ndocker run -it -v \"$(pwd):/workspace\" public.ecr.aws/c4i6k4r8/movement-dev /bin/bash We will also occasionally use Rust and Python to complete various programming examples. We will also discuss using our proxy service with the JavaScript. The movement-dev developer container provides an easy start place for this alternative means of interacting with the subnet .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Our Setup","id":"21","title":"Our Setup"},"22":{"body":"This section treats with basic Move syntax, comparing the language to Rust. This is merely intended to provide some guidance for booklet participants. More comprehensive guides can be found at move-book.com and move-language.github.io .","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Basic Move Syntax","id":"22","title":"Basic Move Syntax"},"23":{"body":"Move's resource-oriented language model leads to a unique memory model: Resources in Move are allocated and deallocated implicitly based on their defined lifespan and ownership semantics. This ensures proper resource management without the need for explicit memory allocation or deallocation. Resources are created and stored on the blockchain as part of a transaction, providing a persistent and tamper-resistant storage mechanism. Global storage in Move allows for the storage of resource data that can be accessed across multiple transactions and smart contracts. While function ownership in Move is similar to Rust, it is less permissive and closer to being purely linear--restricting the set of possible borrows.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Allocation and the Move Memory Model","id":"23","title":"Allocation and the Move Memory Model"},"24":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions and Control Flow","id":"24","title":"Expressions and Control Flow"},"25":{"body":"Move use a similar expression-orientation to Rusts. Block returns are possible. fun eight() : u8 { 8\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions","id":"25","title":"Expressions"},"26":{"body":"Branching in Move is accomplished via if and else statements. There is not an else if statement. if (a) { debug::print(&0);\n} else { debug::print(&99);\n}; if is an expression. let value = if (true) { 8 } else {0}; // value set to 8 Move syntax for expressions and control flow shares similarities with Rust. Basic control flow constructs like if, while, and loop are present in Move as well. However, Move has a more limited set of expressions and control flow features compared to Rust.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » if","id":"26","title":"if"},"27":{"body":"Move supports while and loop looping constructs. while loops while condition is true. loop loops infinitely. There is no for loop, both while and loop are roughly equally used as replacements. // example of while loop\nwhile (i < 10) { Vector::push_back(&mut a, i); i = i + 1;\n};","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » while and loop","id":"27","title":"while and loop"},"28":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Types","id":"28","title":"Types"},"29":{"body":"Move has the primitive types boolean, u8, u64, u128, address, and signer. Move also supports hex- and byte-string literals. let byte_val = b\"hello, world!\"; // byte string\nlet hex_val = x\"48656C6C6F210A\"; // hex string Integers can be type cast with the as keyword. The signer type represents the sender of a transaction and is used for access control and authentication.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Primitives","id":"29","title":"Primitives"},"3":{"body":"The Move programming language was originally developed by Facebook's Libra project, now known as Diem, to facilitate the creation of smart contracts on its blockchain platform. The language takes its name from the underlying concept of moving resources rather than copying them, aligning with the principles of resource-oriented programming. Move was designed to address the unique challenges of blockchain development, such as security, efficiency, and scalability. Its origins can be traced back to the vision of creating a blockchain-based financial infrastructure that would be accessible to billions of people around the world. Today, Move continues to evolve as an open-source language, with a growing ecosystem and community supporting its development and adoption.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Libra/Diem","id":"3","title":"Libra/Diem"},"30":{"body":"Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust. copy: The copy ability allows for the type's value to be copied. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. Conditional abilities allow types to have different behaviors based on conditions.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Abilities","id":"30","title":"Abilities"},"31":{"body":"Move supports generics for structs and functions. It's possible to achieve polymorphic behavior with generics and phantom types. Often you will want to nest generic structures inside of resources to achieve polymorphism. See the LiquidityPool generic structure below for an example. // polymorphic coin fee obtainment from liquidswap.\n/// Get fee for specific pool.\npublic fun get_fee(): u64 acquires LiquidityPool { assert!(coin_helper::is_sorted(), ERR_WRONG_PAIR_ORDERING); assert!(exists>(@liquidswap_pool_account), ERR_POOL_DOES_NOT_EXIST); let pool = borrow_global>(@liquidswap_pool_account); pool.fee\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Generic and behavior","id":"31","title":"Generic and behavior"},"32":{"body":"You can create a reference with &. Reference Global storage operators move_to, move_from, borrow_global_mut, borrow_global, and exists in Move enable reading from and writing to resources stored in the blockchain's global storage. The acquires keyword is used to specify which resources a function acquires ownership of a resource during execution. module collection::collection { struct Item has store, drop {} struct Collection has key, store { items: vector } public fun add_item(account: &signer) acquires Collection { let collection = borrow_global_mut(signer::address_of(account)); vector::push_back(&mut collection.items, Item {}); }\n} Move allows the creation of read-only references to resources, ensuring that functions cannot modify them. Here's a small code snippet demonstrating the use of Move syntax:","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Resources, References, and Mutation","id":"32","title":"Resources, References, and Mutation"},"33":{"body":"The public keyword in Move indicates that a function can be invoked from outside the current module. The native keyword is used to declare functions that are implemented in the blockchain runtime or in an external module. There are VM specific directives; in Movement we will address #[inline], #[view], #[test_only], and #[test].","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Misc. syntax","id":"33","title":"Misc. syntax"},"34":{"body":"This section treats with the basic functionality of the module and build system for Move.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules and Build System","id":"34","title":"Modules and Build System"},"35":{"body":"A folder with a Move.toml and compilable move code is a package. Packages may define external dependencies, which can be local or store at a remote repository. All Move clients used herein will automatically fetch and compile dependencies. When using movement, we will also define package addresses in the Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Packages","id":"35","title":"Packages"},"36":{"body":"Move has two different types of program: modules and scripts . As a general rule, you should use scripts for short proofs of concept or as an entrypoint, see Script Based Design . You can define multiple scripts and modules in the same file.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Program types","id":"36","title":"Program types"},"37":{"body":"Modules are great for code reuse. They can be reference and linked. A module takes the following form. module
:: { ( | | | | )*\n} When attempting to use logic in a module, you must specify the member function that you wish to call.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules","id":"37","title":"Modules"},"38":{"body":"Scripts are a slightly easier to use alternative to modules. They take the following form. script { * * fun <[type parameters: constraint]*>([identifier: type]*) \n} Scripts can only have one function in their body.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Scripts","id":"38","title":"Scripts"},"39":{"body":"When developing for modules in move you will typically need to manually publish the module before being able to run. The exception to this rule is when using movement to run unit tests. movement move publish will handle both the building and publication of modules in your current working directory. If you simply want to build the module to inspect its bytecode run movement move build. Below is an example bash script for publishing and running a function in a module end-to-end using the Movement CLI. #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Building","id":"39","title":"Building"},"4":{"body":"Resource-orientation is a fundamental concept in programming languages like Move that greatly benefits the blockchain ecosystem. By aligning with the principles of resource-oriented programming, the blockchain can enhance security, efficiency, and reliability of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Resource-orientation and the blockchain","id":"4","title":"Resource-orientation and the blockchain"},"40":{"body":"Within aptos_framework, you will be able to use named addresses. These will be replaced at compile time whether they are in the adrress position in a module ::my_module or marked with an @. In your Move.toml, you may specify these addresses as below. [addresses]\nstd = \"0x1\"\n = \"_\" You may then specify them when compiling using --=.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » named_addresses","id":"40","title":"named_addresses"},"41":{"body":"This section introduces a few basic smart contracts from this repository as a starting point for programming activites.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » Debugging Basic Smart Contracts","id":"41","title":"Debugging Basic Smart Contracts"},"42":{"body":"Is a very simple program for MoveVM. You can find it at examples/move/hello_world. script { use std::debug; // use std::vector; fun debug_script(account : signer) { // Encode the \"Hello, world!\" as a byte string. let hello = b\"Hello, world!\"; // Print the byte string as a vector by passing a reference to the byte string. debug::print>(&hello); }\n} To run... move sandbox run sources/hello_world_script.move --signers 0xf\n> [debug] 0x48656c6c6f2c20776f726c6421 Double-check the output hex... echo 48656c6c6f2c20776f726c6421 | xxd -r - p","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 HelloWorld","id":"42","title":"💻 HelloWorld"},"43":{"body":"The obligatory Move program that computes the $nth$ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 Fib","id":"43","title":"💻 Fib"},"44":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it examples/move/resource_roulette. module resource_roulette::resource_roulette { use std::vector; // ResourceRoulette struct representing the contract state struct ResourceRoulette { bids: vector>, owner: address, } struct RouletteWinnings { amount : u64 } // Initialization function for the ResourceRoulette contract public entry fun init(account: &signer) { let bids = vector::empty>(); let i = 0; while i < 32 { vector::push_back(&mut bids, vector::empty
()) i = i + 1; }; move_to(account, ResourceRoulette { bids, owner: @resource_roulette, }); } // Bid function to allow signers to bid on a specific slot public entry fun bid(sender: &signer, slot: u8) acquires ResourceRoulette { let roulette = borrow_global_mut(@resource_roulette); let bids_size = vector::length(&roulette.bids); assert!(slot < bids_size, 99); // assert bids size does not exceed 100 assert!(bids_size < 100, 0); let slot_bids = vector::borrow_mut(&mut roulette.bids, slot); vector::push_back(&mut slot_bids, signer::address_of(sender)); } public fun total_bid(): u64 acquires ResourceRoulette { // Make this more complex to support actual bidding let roulette = borrow_global(@resource_roulette); vector::length(&roulette.bids) } // Roll function to select a pseudorandom slot and pay out all signers who selected that slot public entry fun spin(sender: &signer) acquires ResourceRoulette { let roulette = ResourceRoulette::borrow_global_mut(); assert!(singer::address_of(sender) == roulette.owner, 98); let resource_vector_size = vector::length(&roulette.bids); let winning_slot = (0x1000 % resource_vector_size) as u8; let winners = vector::borrow(&roulette.bids, winning_slot); let num_winners = vector::length(&winners_vec); let balance_per_winner = total_bid() / num_winners as u64; let mut i = 0; while i < num_winners { let winner = vector::borrow(&winners_vec, i); let mut winnings = borrow_global_mut(winner); winnings.amount = winnings.amount + balance_per_winner; i = i + 1; }; } }","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 ResourceRoulette","id":"44","title":"💻 ResourceRoulette"},"45":{"body":"This section examines the standard library and framework that ships with Movement. Both are based on their Aptos namesakes. Disclaimer: there are many more useful modules in the standard library and framework. We will discuss some of them in this course and encourage you to explore them as you go.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » Movement Standard Library","id":"45","title":"Movement Standard Library"},"46":{"body":"Prints to a message to the console using a VM native func. The associated [debug] outputs are easiest to view when unit testing. module debug_demo::message { use std::string; use std::signer; use aptos_std::debug; struct MessageHolder has key { message: string::String, } public entry fun set_message(account: signer, message_bytes: vector) acquires MessageHolder { debug::print_stack_trace(); let message = string::utf8(message_bytes); let account_addr = signer::address_of(&account); if (!exists(account_addr)) { move_to(&account, MessageHolder { message, }); } else { let old_message_holder = borrow_global_mut(account_addr); old_message_holder.message = message; } } #[test(account = @0x1)] fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); debug::print
(&addr); set_message(account, b\"Hello, Blockchain\"); }\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::debug and aptos_std::debug","id":"46","title":"std::debug and aptos_std::debug"},"47":{"body":"A useful dynamically size collection with an aptos_std:: counterpart optimized for a large number of elements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::vector and aptos_std::big_vector","id":"47","title":"std::vector and aptos_std::big_vector"},"48":{"body":"An associative array. fun run_table(account: signer) { let t = table::new(); let key: u64 = 100; let error_code: u64 = 1; assert!(!table::contains(&t, key), error_code); assert!(*table::borrow_with_default(&t, key, &12) == 12, error_code); add(&mut t, key, 1); assert!(*table::borrow_with_default(&t, key, &12) == 1, error_code); move_to(&account, TableHolder{ t });\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_std::table","id":"48","title":"aptos_std::table"},"49":{"body":"This module defines the Option type and its methods to represent and handle an optional value. The implementation is based on a vector. fun option_contains() { let none = option::none(); let some = option::some(5); let some_other = option::some(6); assert!(option::contains(&some, &5), 0); assert!(option::contains(&some_other, &6), 1); assert!(!option::contains(&none, &5), 2); assert!(!option::contains(&some_other, &5), 3);\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::option","id":"49","title":"std::option"},"5":{"body":"In resource-oriented programming, like Move, the stack model is employed to manage data ownership and control access. Take for example the following unsafe C program. #include \n#include \n#include void printAndFree(char* data) { printf(\"Data: %s\\n\", data); free(data); // Function takes ownership and frees the memory\n} int main() { char* value = (char*)malloc(strlen(\"Hello\") + 1); strcpy(value, \"Hello\"); printAndFree(value); // Pass ownership of 'value' to the function // Attempt to access the value after it has been freed printf(\"Data after freeing: %s\\n\", value); // Unsafe access! return 0;\n} In Move, this kind of unsafe access would not be possible because of strict ownership conditions. Each function owns the resources it creates and is responsible for their lifecycle. This ownership model ensures that resources are properly managed and prevents unauthorized access or modification, bolstering the security of blockchain-based applications.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Stack Model Programming and Function Ownership","id":"5","title":"Stack Model Programming and Function Ownership"},"50":{"body":"A resource account is used to manage resources independent of an account managed by a user. This is is useful for building things like liquidity providers which we will discuss later in the course.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_framwork::resource_account","id":"50","title":"aptos_framwork::resource_account"},"51":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell, but only when cash out. Balances are tracked in a aptos_std::table. You can find it and instructions to run it examples/movement/resource_roulette.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 ResourceRoulette pt. 2","id":"51","title":"💻 ResourceRoulette pt. 2"},"52":{"body":"A tiny key value store for vector files. Implements store and load functionality using a aptos_framework::resource_account and a aptos_std::table. You can find it and instructions to run it examples/movement/mini_fs.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 MiniFs","id":"52","title":"💻 MiniFs"},"53":{"body":"This week treats with more advanced concepts in the Move language and focuses our Move development efforts on the Movement blockchain. This is also intended as an opportunity to practice and revisit concepts from Week 1.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Week 2: Advanced Move and Move for Movement","id":"53","title":"Week 2: Advanced Move and Move for Movement"},"54":{"body":"In this section we will examine Move's support for common type-level program models. Owing to the strictness of its programming model, many of the features found in modern programming languages are not available in Move. We conclude with a programming example, 💻 MoveNav , that implements a polymorphic navigation module using Move.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics, type constraints, and polymorphism","id":"54","title":"Generics, type constraints, and polymorphism"},"55":{"body":"Generics act as abstract stand-ins for concrete types and allow for type-independent code. A single function written with generics can be used for any type. In the Move language, generics can be applied to struct and function signatures. // source: https://move-language.github.io/move/generics.html\nfun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} struct Foo has copy, drop { x: T } let x = id(true); // ok!\nlet x = id(true); // error! true is not a u64 struct Foo has copy, drop { x: T } let foo = Foo { x: 0 }; // error! 0 is not a bool\nlet Foo
{ x } = foo; // error! bool is incompatible with address\nlet bar = Foo { x : true }; // ok!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics","id":"55","title":"Generics"},"56":{"body":"In Rust you can write code that composes traits to implement functionality similar to subtyping in other languages. trait Animal { fn make_sound(&self);\n} trait Fly { fn fly(&self);\n} trait Swim { fn swim(&self);\n} trait FlyingSwimmingAnimal: Animal + Fly + Swim { fn do_flying_swimming_stuff(&self) { self.make_sound(); self.fly(); self.swim(); }\n} struct Duck { name: String,\n} impl Animal for Duck { fn make_sound(&self) { println!(\"The duck {} says quack!\", self.name); }\n} impl Fly for Duck { fn fly(&self) { println!(\"The duck {} is flying.\", self.name); }\n} impl Swim for Duck { fn swim(&self) { println!(\"The duck {} is swimming.\", self.name); }\n} fn perform_actions(animal: &T) { animal.make_sound(); animal.fly(); animal.swim();\n} fn main() { let duck = Duck { name: String::from(\"Donald\"), }; perform_actions(&duck);\n} As part of the strictness of its programming model, Move does not support these constructs. Instead to achieve something similar to subtyping, it is often best to compose structs. That is, while you cannot establish an is relationship between types, you can establish a has relationship. This may be a more familiar model for those used to programming in C. module 0x42::Animal { use std::string; use std::debug; struct Animal { sound : string; name : string; } struct FlyingAnimal { flies : bool; speed : u8; animal : Animal; } struct Bird { flying_animal : FlyingAnimal; feather_description : string; } fun make_sound(animal : Animal){ debug::print(animal.sound); } fun bird_make_sound(bird : Bird){ make_sound(bird.flying_animal.animal); } } Importantly, however, you cannot compose types to provide bounds on generic functions. An equivalent of fn perform_actions(animal: &T) does not exist. Further below, we will discuss more advanced means of achieving similar subtyping and polymorphism. However, in most cases, you will be better off simply choosing a simpler programming model.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Move does not support subtyping or composable type constraints","id":"56","title":"Move does not support subtyping or composable type constraints"},"57":{"body":"copy: The copy ability allows for the type's value to be cloned. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. These abilites may be used to define type bounds for generic functions and structs. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} Importantly, in the publish_generic_box example above, the type T must also have the has and store abilities owing to Move's rules of ability composition: copy: All fields must have copy. drop: All fields must have drop. store: All fields must have store. key: All fields must have store.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The Four Type Abilities: copy, drop, store, and key","id":"57","title":"The Four Type Abilities: copy, drop, store, and key"},"58":{"body":"Storage polymorphism is the ability to index into global storage via a type parameter chosen at runtime. By leveraging storage polymorphism in combination with generics, Move developers can write generic algorithms, functions, and modules that can work with different resource types stored in the blockchain's storage. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} While not as flexible as general polymorphism found in some languages, Move's storage polymorphism can quickly compose complex and useful operations for the blockchain. The below is an example of function for adding liquidity from Movement's dex router. Under the hood, global storage polymorphism is being used to enable to the publication of generic coins. /// Add liquidity to pool `X`/`Y` with rationality checks.\n/// * `coin_x` - coin X to add as liquidity.\n/// * `min_coin_x_val` - minimum amount of coin X to add as liquidity.\n/// * `coin_y` - coin Y to add as liquidity.\n/// * `min_coin_y_val` - minimum amount of coin Y to add as liquidity.\n/// Returns remainders of coins X and Y, and LP coins: `(Coin, Coin, Coin>)`.\n///\n/// Note: X, Y generic coin parameters must be sorted.\npublic fun add_liquidity( coin_x: Coin, min_coin_x_val: u64, coin_y: Coin, min_coin_y_val: u64,\n): (Coin, Coin, Coin>) { assert!(coin_helper::is_sorted(), ERR_WRONG_COIN_ORDER); let coin_x_val = coin::value(&coin_x); let coin_y_val = coin::value(&coin_y); assert!(coin_x_val >= min_coin_x_val, ERR_INSUFFICIENT_X_AMOUNT); assert!(coin_y_val >= min_coin_y_val, ERR_INSUFFICIENT_Y_AMOUNT); let (optimal_x, optimal_y) = calc_optimal_coin_values( coin_x_val, coin_y_val, min_coin_x_val, min_coin_y_val ); let coin_x_opt = coin::extract(&mut coin_x, optimal_x); let coin_y_opt = coin::extract(&mut coin_y, optimal_y); let lp_coins = liquidity_pool::mint(coin_x_opt, coin_y_opt); (coin_x, coin_y, lp_coins)\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Storage polymorphism","id":"58","title":"Storage polymorphism"},"59":{"body":"In order to enforce type constraints at compile-time, unused type parameters can be marked as phantom type parameters. Arguments to phantom type parameters won't be considered when determining the abilities of the generic type. Thus, this eliminates the need for spurious ability annotations. Generics, along with storage polymorphism and phantom type parameters, offer flexibility, code reuse, and type safety. These features make it easier to create modular and reusable code components for safe contracts in the Move language. For instance, generics can be used to define generic data structures such as lists, maps, or queues that can store and manipulate values of any type. In addition, generics enable the creation of templatized algorithms which can operate on different types of data. // source: https://move-language.github.io/move/generics.html?highlight=phantom%20types#unused-type-parameters\nmodule 0x2::m { // Currency Specifiers struct Currency1 {} struct Currency2 {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_concrete(value: u64): Coin { Coin { value } }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Unused and phantom types","id":"59","title":"Unused and phantom types"},"6":{"body":"Resource-oriented programming languages like Move implement access restrictions at all levels of code execution. From the top-level contract to individual functions, access to resources is strictly controlled. This granular access control minimizes the risk of unauthorized operations and ensures that only authorized parties can interact with specific resources, promoting secure and auditable transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Access Restriction All the Way Down","id":"6","title":"Access Restriction All the Way Down"},"60":{"body":"💻 MoveNav implements Dijkstra's algorithm for navigating over a graph with different navigation types in move. We'll use a simple approach to domain modeling outlined below. // redacted version of examples/movement/MoveNav\nmodule 0x42::MoveNav { use std::vector; use std::option; use std::debug; struct Graph { nodes: vector, edges: vector, } struct Vector3 { x: u8, y: u8, z: u8, } struct Edge { source: u8, target: u8, weight: u8, } struct Navigation { graph: Graph, navigation_type: NavigationType, } struct NavigationType { name: string, speed: u8, } fun navigate(nav: Navigation, start: Vector3, end: Vector3): option::Option { debug::print(\"Navigating from \", start, \" to \", end); let nav_type = &nav.navigation_type; if nav_type.name == \"Walk\" { debug::print(\"Walking at speed \", nav_type.speed); // Perform walking navigation logic return option::None; } if nav_type.name == \"Run\" { debug::print(\"Running at speed \", nav_type.speed); // Perform running navigation logic return option::None; } if nav_type.name == \"Fly\" { debug::print(\"Flying at speed \", nav_type.speed); // Perform flying navigation logic return option::None; } else { debug::print(\"Unsupported navigation type\"); return option::None; } } fun set_graph(nav: &mut Navigation, graph: Graph) { nav.graph = graph; } fun set_navigation_type(nav: &mut Navigation, nav_type: NavigationType) { nav.navigation_type = nav_type; }\n} To dive into the project, please clone this book's repo, and navigate to examples/movement/MoveNav.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » 💻 MoveNav","id":"60","title":"💻 MoveNav"},"61":{"body":"The MSL specification provides for more advanced type-level constructs. For ambitious developers, these may be powerful contribution objectives!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The future of Move type programming","id":"61","title":"The future of Move type programming"},"62":{"body":"This section examines the safety features of Move in greater and more theoretical detail. There are no programming exercises designed for this section. It is primarily intended to motivate the usage of Move language in the context of blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Safety","id":"62","title":"Safety"},"63":{"body":"The Move Language was inspired by linear logic, a formal system of logic that was developed by Jean-Yves Girard in 1987. In linear logic, formulas were regarded as resources which could only be used once. Similarly, in the Move language, resources can only be moved between storage locations, never copied or dropped.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Linear logic","id":"63","title":"Linear logic"},"64":{"body":"Move's type system enables special safety guarantees for resources. It ensures that move resources can not be duplicated, reused, or implicitly discarded. Attempts to duplicate, reuse, or implicitly discard a resource will result in a bytecode verification error. Notwithstanding these unique safeguards, resources in the Move language possess the characteristics of regular program values. They can be stored in data structures, passed as arguments to procedures, and utilized in similar ways. module 0x42::LinearLogicExample { use std::vector; use std::debug; struct Token has drop { value: u8, } fun use_token(token: Token) { debug::print>(\"Using token.\"); // Perform operations with the token... } public fun main() { let token: Token; token = Token { value: 10 }; debug::print>(b\"Before use:\"); debug::print(token.value); use_token(token); debug::print(token.value); // Attempting to access `token` here would result in a compile-time error }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Move type system","id":"64","title":"Move type system"},"65":{"body":"The Move Prover is a formal verification tool specifically designed for the Move programming language. The Move Prover performs static analysis of Move programs, exploring all possible execution paths and applying various verification techniques. It can reason about program behaviors, ownership and borrowing rules, resource lifecycles, and other aspects of Move's type system and semantics. By leveraging the Move Prover, developers can gain increased confidence in the correctness and security of their Move smart contracts. This tool helps identify potential issues before deployment, reducing the risk of vulnerabilities, ensuring adherence to best practices, and promoting the development of robust and reliable blockchain applications.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » The Move Prover","id":"65","title":"The Move Prover"},"66":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Introduction to Smart Contracts","id":"66","title":"Introduction to Smart Contracts"},"67":{"body":"Long before blockchain technology, American cryptographer and programmer, Nick Szabo, proposed the idea of the smart contracts in 1996. At the time of his proposal, the distributed ledger did not exist, and thus his idea could be not built upon. The first cryptocurrency, Bitcoin, was created in 2008, which helped to motivate the development of smart contracts. In 2013, Ethereum became the first platform to host smart contracts. Now, there are plenty of platforms that are used to bring Szabo's idea to life. When it comes to implementing smart contracts, resource orientation plays a crucial role in ensuring security, efficiency, and reliability. Resource-oriented programming languages, such as Move, have emerged as a powerful tool for developing smart contracts on blockchain platforms. Move, specifically designed for the Libra blockchain, places a strong emphasis on resource-oriented programming principles, which have proven to be highly beneficial in the context of smart contracts. Here's why resource orientation is important in languages like Move: Security and Safety: Smart contracts often handle valuable digital assets, and any vulnerability or flaw in the contract's code can lead to disastrous consequences, including financial losses. Resource-oriented programming in Move enforces strict ownership and borrowing rules, ensuring that resources are properly managed and protected. The language's type system guarantees the absence of common vulnerabilities like reentrancy and enables static verification of contracts, minimizing the risk of critical bugs and making smart contracts more secure. Efficient Resource Management: In traditional programming languages, objects or data structures are often copied or cloned when passed between functions or contracts. This can lead to unnecessary memory consumption and performance bottlenecks. Resource-oriented programming in Move takes a different approach. Resources are moved between functions or contracts, rather than being copied, ensuring efficient use of memory and reducing the risk of unintended side effects. Move's ownership model allows for fine-grained control over resource lifecycles, enabling optimized resource management within smart contracts. Immutable and Transparent State: Blockchain technology inherently involves a distributed and immutable ledger that maintains the state of smart contracts. Resource-oriented programming aligns well with these characteristics, as Move enforces immutability for resources. Once a resource is created, its state cannot be modified directly, ensuring the integrity and consistency of the contract's data. This immutability also contributes to the transparency of the blockchain, as the entire history of resource states can be audited and verified by any participant. Concurrent and Parallel Execution: In decentralized blockchain networks, multiple transactions can be executed concurrently, requiring smart contracts to handle concurrent access to shared resources. Resource-oriented programming provides a solid foundation for handling concurrent execution. Move's borrowing mechanism allows for controlled and safe concurrent access to resources, preventing data races and ensuring deterministic execution. This capability enables scalable and efficient execution of smart contracts in a distributed environment. Upgradeability and Evolution: Smart contracts often need to evolve and adapt over time to incorporate new features, fix bugs, or address changing business requirements. Resource-oriented programming facilitates upgradability by decoupling the contract's data from its logic. By defining the behavior of resources separately from the contract's code, Move allows for smooth migration and upgrade of contracts while preserving the integrity of existing data and ensuring backward compatibility. Resource orientation in languages like Move plays a pivotal role in the development of secure, efficient, and reliable smart contracts. By enforcing ownership and borrowing rules, enabling efficient resource management, ensuring immutability and transparency of state, supporting concurrent execution, and facilitating upgradability, Move empowers developers to build robust and future-proof smart contracts on the blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Origins of smart contracts","id":"67","title":"Origins of smart contracts"},"68":{"body":"We've implemented a multi-contract fibonacci number computation in Solidity, Anchor, and Movement to illustrate the benefits of the move language and Movement. We encourage to run and compare the source for each. We've included devcontainers for Solidity and Anchor in the associated repo.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Comparison: 💻 MulticontractFib","id":"68","title":"Comparison: 💻 MulticontractFib"},"69":{"body":"Solidity is high-level, object-oriented programming language used to implement smart contracts. It is the primary programming language used on the Ethereum blockchain. To work with the Solidity implementation, use the solidity devcontainer and work from the examples/solidity/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Solidity","id":"69","title":"Solidity"},"7":{"body":"Type linearity is a crucial aspect of resource-oriented programming that enforces the linear use of resources. In Move, resources have linear types, meaning they can only be consumed or moved, not duplicated. This feature prevents resource duplication, reduces memory consumption, and eliminates the risk of double-spending, ensuring the integrity and accuracy of transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Type Linearity and Ownership","id":"7","title":"Type Linearity and Ownership"},"70":{"body":"Anchor is Solana's Sealevel runtime framework. It provides several developer tools for writing smart contracts in order to simplify the process and help developers to focus on their product. To work with the Anchor implementation, use the anchor devcontainer and work from the examples/anchor/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Anchor","id":"70","title":"Anchor"},"71":{"body":"This is us! To work with the Anchor implementation, use the movement devcontainer and work from the examples/movement/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Movement","id":"71","title":"Movement"},"72":{"body":"This section examines testing strategies for Move smart contracts on Movement. We will cover both automated and manual strategies for testing functionality.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing","id":"72","title":"Testing"},"73":{"body":"movement init --network testnet When building and testing an application, you will want to work against either the Movement testnet or a local network. The movement devcontainer is equipped with the movement CLI and uses docker-compose to start a local network; both options are available without additional setup when working with the devcontainer. When beginning a project, run movement init and specify either testnet or local. The first profile you create will be called default. To create a new profile run movement init --profile . You can then specify which profile you would like to use in various commands by --profile , e.g., move run --profile default .... You can inspect the details of all of your profiles at .movement/config.yaml in your working directory. # config.yaml\n---\nprofiles: default: private_key: \"0x23978a9c5a8c9291c3cb0283f5c4eee243f7ae81d62b3d3243aa06ac0fcde2cf\" public_key: \"0xf6ad6834565bda0f3fa8a093311f1a1308855773d2108cd04dd770da9c078ecd\" account: 29f06cb1f4139484e8c3dcd9f915ad39acb2aee9a8e8064ee48cfc255ecf10ca rest_url: \"https://fullnode.devnet.aptoslabs.com/\" faucet_url: \"https://faucet.devnet.aptoslabs.com/\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Movement profile configuration","id":"73","title":"Movement profile configuration"},"74":{"body":"Movement's CLI movement provides an aptos-like interface for building and testing Move smart contracts. The built-in testing functionality is best suited for unit testing. You can define tests in the same module or separately. // hello_blockchain.move\nmodule hello_blockchain::message { use std::error; use std::signer; use std::string; use aptos_framework::account; use aptos_framework::event; // ... #[test(account = @0x1)] public entry fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( get_message(addr) == string::utf8(b\"Hello, Blockchain\"), ENO_MESSAGE ); }\n} // hello_blockchain_test.move\n#[test_only]\nmodule hello_blockchain::message_tests { use std::signer; use std::unit_test; use std::vector; use std::string; use hello_blockchain::message; fun get_account(): signer { vector::pop_back(&mut unit_test::create_signers_for_testing(1)) } #[test] public entry fun sender_can_set_message() { let account = get_account(); let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); message::set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( message::get_message(addr) == string::utf8(b\"Hello, Blockchain\"), 0 ); }\n} You can then run tests for the package containing modules from the movement CLI. movement move test --named-addresses hello_blockchain=default For advanced use of movement for automated testing, such as coverage, see the movement CLI documentation .","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Automated testing","id":"74","title":"Automated testing"},"75":{"body":"Often, automated unit testing will be insufficient to determine that your smart contracts are ready for production. You will want to apply a set of end-to-end strategies to ensure smart contract quality. At the moment, all of these strategies are manual; however, automation can be built on-top of them. Contribution {: .contributor-block} Help us develop better tools for automated e2e and integration testing.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Manual testing","id":"75","title":"Manual testing"},"76":{"body":"There three key instructions for manual testing using movement: movement move publish: publishes modules and scripts to the Movement blockchain. movement move run: runs a module or script. movement account list: lists resources values. When testing manually, you will typically adopt a flow of publish->run->list. In the examples provided with this book's repository, you will commonly see bash scripts for running and testing Movement smart contract that orchestrate these three commands. The following is an example from our hello_blockchain contract: #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\" begin \"Setting hello_blockchain message to 'goodbye!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:goodbye!\nfinish \"Set hello_blockchain message to 'goodbye'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » With movement","id":"76","title":"With movement"},"77":{"body":"In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities. Share {: .share-block} Share your semi-automated workflows with us!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Semi-automation","id":"77","title":"Semi-automation"},"78":{"body":"In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks, stubs, and state-based simulation","id":"78","title":"Mocks, stubs, and state-based simulation"},"79":{"body":"Mocks and stubs are both techniques used to simulate or replace certain components of a system being tested. A mock is a fake implementation of a method or an object, meant to simulate its real behavior. Stubs, on the other hand, are simplified implementations that do not imitate the real behavior. Instead, stubs produce a predefined response to a specific method call or input. Thus, mocks verify the behavior of code and stubs verify the state of the code. Some of the modules in the standard library and framework will be suitable for mocking. The example below uses a resource account function to mock a specialized publishing process. A good strong understanding of the standard library can result in much cleaner solutions to mocking problems. #[test_only]\npublic entry fun set_up_test(origin_account: &signer, resource_account: &signer) { use std::vector; account::create_account_for_test(signer::address_of(origin_account)); // create a resource account from the origin account, mocking the module publishing process resource_account::create_resource_account(origin_account, vector::empty(), vector::empty()); init_module(resource_account);\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks and stubs","id":"79","title":"Mocks and stubs"},"8":{"body":"Double-spending is a significant concern in decentralized systems where digital assets are involved. Resource-oriented programming, like Move, mitigates the risk of double-spending by enforcing strict ownership and borrowing rules. Resources can only be moved or consumed once, preventing malicious actors from creating multiple transactions using the same resource and effectively eliminating the possibility of double-spending attacks.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Double-Spending","id":"8","title":"Double-Spending"},"80":{"body":"State-based simulation is a testing technique that focuses on verifying a program based the correctness of its state transitions. First, one must identify and define the states that the program can be in. Next, the events or actions that trigger a transition between states must be defined. Using this information, proper test cases should be generated to explore different state transitions and scenarios.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » State-based simulation","id":"80","title":"State-based simulation"},"81":{"body":"Beyond the test and test_only directives, Movement does not not provide any additional ergonomics for mocking, stubbing, or state-based simulation. However, opting for a common environment module may be suitable for more complex cases. The example below uses storage polymorphism to implement a common environment store. address 0x42::Environment { // Unused type for global storage differentiation struct VariableA {} struct VariableB {} // A generic variable type that can be instantiated with different types struct VariableStore has store { value: V, } // Set the value of a variable public fun set_variable(value: V) acquires VariableStore { move_to>(account, VariableSore { value }) } // Get the value of a variable public fun get_variable(): V acquires VariableStore { borrow_global>(addr).value }\n} When setting up your tests, you would then want to run something like the below. You'll likely want to simply create a type bridge in the module above to enable external sets from the CLI. #!/bin/bash -e # set environment\nbegin \"Setting environment to slow...\"\necho \"y\" | movement move run --function-id default::message::set_slow_variable --args string:slow\nfinish \"Set environment to slow!\" Contribution {: .contributor-block} Help us develop mocking and stubbing tools for Movement.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » For movement","id":"81","title":"For movement"},"82":{"body":"Ville Sundell has already provided an expert overview of useful design patterns in Move. As this book improves, we may include some of our own here. However, for now, we defer to Ville.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Design Patterns » Design Patterns","id":"82","title":"Design Patterns"},"83":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Smart Contracts development and staging","id":"83","title":"Smart Contracts development and staging"},"84":{"body":"When building smart contracts for movement you can use both the move client and movement itself.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Development","id":"84","title":"Development"},"85":{"body":"The move CLI is a suitable tool for early and primitive development. You will not have access to the same onchain resources as when working with the movement CLI, such as access to our DEX. However, you will be able to use the move sandbox to build and run contracts. To make sure you are building with out standard library, include the following in your Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » move","id":"85","title":"move"},"86":{"body":"The movement CLI provides an aptos-like interface for running Move language scripts and modules. For more details see the movement CLI docs. When using movement in its default configuration, you will test and run contracts against our testnet. This is ideal for most Movement development.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » movement","id":"86","title":"movement"},"87":{"body":"The best way to publicly stage smart contracts for Movement is simply to us a movement CLI. If you are interested in a more private staging environment, you may use the movement CLI with the provided movement devcontainer to compose and stage against a local network. Contribution {: .contributor-block} Help us develop better tools for movement staging!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Staging","id":"87","title":"Staging"},"88":{"body":"M1 is Movement's first L1. This week is be all about building applications, particular DeFi applications, with Movement.","breadcrumbs":"Week 3: M1 and DeFi Applications » Week 3: M1 and DeFi Applications","id":"88","title":"Week 3: M1 and DeFi Applications"},"89":{"body":"At the time of writing, only the M1 testnet is available. To set up for deployment you only need to make sure you have a testnet profile configured. movement init --network testnet You may then use the movement CLI to publish your package. movement move publish --named-addresses hello_blockchain=default We encourage however to take a look at aptos_framework::resource_account and aptos_framework::resource_group for more advanced publication options.","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » Deploying on M1","id":"89","title":"Deploying on M1"},"9":{"body":"Virtual machines play a crucial role in the blockchain ecosystem, particularly in executing and enforcing the logic of smart contracts. They ensure that all nodes on the blockchain network run the same logic, enabling verification and consensus among participants.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual machines and the blockchain","id":"9","title":"Virtual machines and the blockchain"},"90":{"body":"We encourage you to checkout examples/movement/multicontract_fib for an easy to inspect deployment. Once you've deployed, simply run the command below to check out the on-chain resources. movement account list --query resources --account default","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » 💻 MulticontractFib","id":"90","title":"💻 MulticontractFib"},"91":{"body":"This section provides a high-level overview of common blockchain concerns and points to features of Movement or modules from the Movement standard library that can be used to help.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Security","id":"91","title":"Security"},"92":{"body":"When working with M1 you will be able benefit from Avalanche's adaptive security and Move's strict programming model to avoid many of the vulnerabilities you would commonly encounter in smart contract development. You should, of course, remain aware of the vectors of attack.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » M1","id":"92","title":"M1"},"93":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Attack Surface","id":"93","title":"Attack Surface"},"94":{"body":"Network layer The network layer of a blockchain application is susceptible to various attacks, such as distributed denial-of-service (DDoS) attacks, eclipse attacks, and Sybil attacks. These attacks can disrupt the network's functionality and compromise its security. Consensus The consensus mechanism used in a blockchain application can be targeted by attackers through attacks like 51% attacks, where they gain majority control over the network's computing power and manipulate transactions or block validation. Thankfully, Avalanche consensus--which underpins movement--is designed to resist various attacks, including sybil attacks, distributed denial-of-service (DDoS) attacks, and collusion attacks. Its probabilistic nature ensures that the consensus outcome converges to the desired state, even when the network is under attack. Blockchain protocol: The underlying blockchain protocol may have vulnerabilities that can be exploited by attackers. Weaknesses in the protocol's cryptographic algorithms, consensus algorithms, or validation mechanisms can lead to security breaches.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Blockchain","id":"94","title":"Blockchain"},"95":{"body":"Environment Smart contracts rely on the execution environment in which they run. Insecure environments can expose smart contracts to attacks, such as sandbox escapes or unauthorized access to system resources. External dependencies Smart contracts often interact with external systems or data sources. These dependencies can introduce security risks, such as malicious data feeds or vulnerabilities in the connected systems. Code vulnerabilities Flaws in the code of smart contracts can lead to various vulnerabilities, including reentrancy attacks, integer overflow/underflow, and logic errors. These vulnerabilities can be exploited to manipulate contract behavior or steal funds. Thankfully, thanks to its type-system, resource-orientation, and linear programming model, the Move language makes it difficult to publish code with many of the common smart contract vulnerabilities. Upgradability The ability to upgrade smart contracts introduces potential security risks. Unauthorized or malicious upgrades can compromise the integrity of the contract or introduce vulnerabilities that can be exploited. Thankfully, the Move language introduces the concept of modules, which are self-contained units of code that encapsulate the functionality of smart contracts. Unlike traditional smart contracts, Move modules can be upgraded without disrupting the entire system or requiring complex migration processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Smart contracts","id":"95","title":"Smart contracts"},"96":{"body":"Integration risks Decentralized applications (dApps) often integrate with external services or APIs. Insecure integration points can expose dApps to security risks, such as unauthorized data access or injection of malicious code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » dApps","id":"96","title":"dApps"},"97":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Handling User Data","id":"97","title":"Handling User Data"},"98":{"body":"Blockchain applications should follow the principle of data minimization, collecting only the necessary data and avoiding the storage of sensitive information that is not required for the application's functionality.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Data minimization","id":"98","title":"Data minimization"},"99":{"body":"Proper access control mechanisms should be implemented to ensure that only authorized individuals or entities can access sensitive user data. This includes authentication, authorization, and secure role-based access control. Move uses an account-based ownership model where each account has its own address and associated permissions. Access control can be enforced at the account level, ensuring that only authorized users can perform specific actions.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Access control","id":"99","title":"Access control"}},"length":151,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":9,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}},"x":{"1":{"0":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"139":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"7":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":3.0},"127":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":4,"docs":{"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"133":{"tf":1.4142135623730951}}},"5":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"6":{"df":2,"docs":{"127":{"tf":1.0},"49":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}},"9":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"102":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":3.1622776601683795},"115":{"tf":1.7320508075688772},"118":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.4142135623730951},"121":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":3.605551275463989},"79":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"31":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"104":{"tf":1.0},"58":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"114":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"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":8,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"131":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":2.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"z":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"131":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"45":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"48":{"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":{}}},"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"t":{"df":11,"docs":{"106":{"tf":2.23606797749979},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"8":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":3.7416573867739413},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"14":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"102":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":1,"docs":{"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"106":{"tf":1.0},"114":{"tf":2.0},"129":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"1":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"39":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"142":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"141":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"56":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"58":{"tf":1.0}}},"df":51,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"60":{"tf":1.0},"76":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"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":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"121":{"tf":2.0},"125":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"121":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":3,"docs":{"109":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"0":{"tf":1.7320508075688772},"109":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":2.0},"50":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":7,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"108":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":2.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"115":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"3":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"67":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"121":{"tf":2.23606797749979},"124":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"58":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"77":{"tf":1.0}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.23606797749979},"21":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"137":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"109":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":3.1622776601683795},"31":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"142":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"32":{"tf":1.7320508075688772},"47":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"73":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"103":{"tf":1.0},"114":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"146":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"150":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":6,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":5,"docs":{"125":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"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":2,"docs":{"142":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"146":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"114":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"131":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"142":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":2.0},"137":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"126":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"142":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"67":{"tf":2.0}}},"df":37,"docs":{"10":{"tf":2.0},"104":{"tf":2.6457513110645907},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":4.47213595499958},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.3166247903554}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"118":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"y":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"127":{"tf":1.0},"59":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"t":{"a":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"46":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"i":{"df":12,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"88":{"tf":1.4142135623730951}},"n":{"df":12,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":38,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"58":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"136":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"67":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"86":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.0}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"21":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"140":{"tf":1.0},"142":{"tf":1.0},"45":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"39":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"7":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"81":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"t":{"df":3,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"v":{"df":3,"docs":{"142":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"71":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"9":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"142":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"138":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"125":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.0}},"i":{"df":7,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"133":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"133":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"56":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"142":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"56":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"145":{"tf":1.0},"70":{"tf":1.0}},"s":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}}},"df":3,"docs":{"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"106":{"tf":1.0}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"142":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"5":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"121":{"tf":3.0},"122":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":24,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"116":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"19":{"tf":1.0},"31":{"tf":2.23606797749979},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"df":2,"docs":{"120":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":2.0},"114":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"142":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0}}}}}}},"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"l":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"76":{"tf":3.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"76":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}},"df":3,"docs":{"142":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"133":{"tf":1.0},"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":{}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"85":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"67":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":4,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.7320508075688772},"142":{"tf":1.0},"80":{"tf":1.0},"98":{"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":4,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":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":{"104":{"tf":1.0},"73":{"tf":1.7320508075688772},"89":{"tf":1.0}},"i":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"56":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"29":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":7,"docs":{"11":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"n":{"d":{"df":4,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"139":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"87":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"74":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"41":{"tf":1.0},"95":{"tf":2.0}},"t":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}},"p":{"df":3,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":10,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"52":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"76":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"111":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"2":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"y":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"126":{"tf":1.0},"132":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"104":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"45":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"23":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":2.0},"95":{"tf":1.0}}}},"df":1,"docs":{"109":{"tf":1.0}}},"k":{"df":3,"docs":{"101":{"tf":1.0},"135":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"106":{"tf":1.0},"121":{"tf":2.449489742783178},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"126":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"114":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":2.23606797749979},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":2.0},"125":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":2.0},"67":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"m":{"1":{"df":4,"docs":{"116":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"67":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"121":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"21":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"113":{"tf":1.0},"145":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"76":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":2.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"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":{"146":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":1,"docs":{"52":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"6":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":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":{"121":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"54":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":30,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.6457513110645907},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":65,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"104":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.7320508075688772},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"88":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":2.23606797749979},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.8284271247461903},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"74":{"tf":2.23606797749979},"76":{"tf":3.605551275463989},"81":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"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":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"68":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":2.0},"147":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"w":{"df":6,"docs":{"104":{"tf":2.0},"138":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":2,"docs":{"110":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"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":{"c":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"81":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"94":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"146":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"44":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.449489742783178},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"35":{"tf":2.23606797749979},"74":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":4,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":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":{"110":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}},"g":{"df":1,"docs":{"127":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"113":{"tf":1.0},"17":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"23":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"138":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"41":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"31":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"81":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"130":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"141":{"tf":1.0},"145":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"111":{"tf":1.0},"67":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"116":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"146":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"79":{"tf":1.0}},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":3.3166247903554},"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.8284271247461903},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}},"m":{"df":2,"docs":{"117":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":15,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"150":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"130":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":2.0}}}},"i":{"d":{"df":35,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":17,"docs":{"104":{"tf":1.7320508075688772},"115":{"tf":1.0},"121":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"104":{"tf":1.0},"39":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"d":{"df":2,"docs":{"133":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"122":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"118":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"32":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"118":{"tf":1.0},"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"112":{"tf":1.0},"140":{"tf":1.0},"21":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"29":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":4.358898943540674},"67":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"23":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":4.69041575982343},"7":{"tf":2.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.8284271247461903},"51":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"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":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"109":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"105":{"tf":2.0},"137":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.0},"51":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"42":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"121":{"tf":1.0},"142":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":4,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"127":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"120":{"tf":1.0},"21":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"81":{"tf":2.449489742783178},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":2.23606797749979},"55":{"tf":1.0}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":13,"docs":{"104":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"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":{"105":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"55":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"10":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"56":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"140":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":2.23606797749979}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":1.0},"142":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":2.0},"44":{"tf":1.0},"67":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"56":{"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":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"56":{"tf":2.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"31":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":3,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"140":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":2,"docs":{"138":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":2.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"138":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":2.23606797749979}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":5,"docs":{"48":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":16,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":3.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"138":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"145":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"114":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"l":{"df":1,"docs":{"113":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":3.1622776601683795},"64":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}},"df":23,"docs":{"127":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":3.605551275463989},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"81":{"tf":2.0},"95":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.6457513110645907},"64":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"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":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"0":{"tf":1.0},"142":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"114":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"115":{"tf":1.0},"95":{"tf":1.0}}}}},"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":2,"docs":{"55":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"121":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"148":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"109":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":73,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"142":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"55":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"81":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"104":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"46":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0}}},"v":{"df":4,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"140":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"141":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"137":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":16,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":2.8284271247461903},"58":{"tf":2.0},"60":{"tf":1.0}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":7,"docs":{"104":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"60":{"tf":1.0},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"r":{"df":1,"docs":{"133":{"tf":1.0}}},"v":{"df":4,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}}},"z":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":9,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}},"x":{"1":{"0":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"139":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"7":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":3.0},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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.4142135623730951},"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":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":41,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.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},"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}}},"3":{"2":{"df":1,"docs":{"44":{"tf":1.0}}},"df":47,"docs":{"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.7320508075688772},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"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}}},"5":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"6":{"df":2,"docs":{"127":{"tf":1.0},"49":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}},"9":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"30":{"tf":3.0},"57":{"tf":2.8284271247461903},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"102":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":2.0},"114":{"tf":3.3166247903554},"115":{"tf":2.0},"118":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.4142135623730951},"121":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":3.605551275463989},"79":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"31":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"114":{"tf":2.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"113":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"104":{"tf":1.0},"58":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"114":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":36,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"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.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"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},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"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":8,"docs":{"100":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"131":{"tf":1.0},"23":{"tf":2.0}}},"df":0,"docs":{},"w":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"44":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"129":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":2.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"z":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":49,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"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.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"131":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"45":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"48":{"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":{}}},"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"t":{"df":11,"docs":{"106":{"tf":2.23606797749979},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":2.0}}},"p":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"8":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":3.7416573867739413},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"14":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"102":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":1,"docs":{"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"106":{"tf":1.0},"114":{"tf":2.0},"129":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}},"i":{"c":{"df":18,"docs":{"1":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"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},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"39":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"142":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"141":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"56":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"58":{"tf":1.0}}},"df":52,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":2.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"60":{"tf":1.0},"76":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"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":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"121":{"tf":2.0},"125":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"121":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"139":{"tf":1.7320508075688772}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"df":3,"docs":{"109":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"146":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"139":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"0":{"tf":2.23606797749979},"109":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":7,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"108":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":1,"docs":{"51":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"127":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":2.23606797749979}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":3.0},"115":{"tf":2.6457513110645907},"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"3":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"67":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":2.0}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"121":{"tf":2.23606797749979},"124":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"58":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"77":{"tf":1.0}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.449489742783178},"21":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"137":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"109":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":3.3166247903554},"31":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.23606797749979},"142":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"32":{"tf":1.7320508075688772},"47":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"73":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.7320508075688772},"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},"114":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"146":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"150":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":6,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":5,"docs":{"125":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"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":2,"docs":{"142":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"146":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"114":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"131":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"142":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":2.0},"137":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"126":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"142":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"67":{"tf":2.0}}},"df":38,"docs":{"10":{"tf":2.23606797749979},"104":{"tf":2.6457513110645907},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":4.69041575982343},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.4641016151377544}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"118":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"y":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"127":{"tf":1.0},"59":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"a":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"46":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"144":{"tf":2.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"i":{"df":45,"docs":{"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":2.23606797749979},"117":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":12,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"78":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":17,"docs":{"103":{"tf":1.7320508075688772},"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},"144":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":2.0},"94":{"tf":1.0}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":39,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"58":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"136":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"67":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"86":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}}},"df":1,"docs":{"102":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"2":{"df":1,"docs":{"75":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"21":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"140":{"tf":1.0},"142":{"tf":1.0},"45":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":2.0}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"39":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"7":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"81":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"48":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"142":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"t":{"df":3,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"v":{"df":3,"docs":{"142":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"71":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"9":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"142":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"138":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"124":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"125":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"117":{"tf":1.0},"127":{"tf":1.0}},"i":{"df":7,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"133":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"76":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"133":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"56":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"142":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"56":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"145":{"tf":1.0},"70":{"tf":1.0}},"s":{"df":4,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}}},"df":3,"docs":{"142":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"106":{"tf":1.0}}},"df":8,"docs":{"114":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"142":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"46":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"121":{"tf":1.7320508075688772},"127":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"121":{"tf":3.0},"122":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":24,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"116":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.7320508075688772},"19":{"tf":1.0},"31":{"tf":2.449489742783178},"36":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"df":2,"docs":{"120":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":2.23606797749979},"114":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"62":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"142":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.7320508075688772},"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}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0}}}}}}},"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"l":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"76":{"tf":3.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"76":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}},"df":3,"docs":{"142":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"105":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"133":{"tf":1.0},"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"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":{}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"85":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.7320508075688772},"39":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"67":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"df":4,"docs":{"128":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"108":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.7320508075688772},"142":{"tf":1.0},"80":{"tf":1.0},"98":{"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":4,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":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":{"104":{"tf":1.0},"73":{"tf":1.7320508075688772},"89":{"tf":1.0}},"i":{"df":2,"docs":{"104":{"tf":1.0},"44":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"56":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"29":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":7,"docs":{"11":{"tf":1.0},"138":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"n":{"d":{"df":4,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"139":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"87":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"74":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"41":{"tf":1.0},"95":{"tf":2.0}},"t":{"df":59,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"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},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}},"p":{"df":3,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":10,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.23606797749979},"52":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"76":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"111":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"2":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}}},"y":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"132":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"104":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"14":{"tf":1.0},"45":{"tf":2.23606797749979},"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},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"23":{"tf":1.0},"63":{"tf":2.0},"7":{"tf":2.23606797749979},"95":{"tf":1.0}}}},"df":1,"docs":{"109":{"tf":1.0}}},"k":{"df":3,"docs":{"101":{"tf":1.0},"135":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"106":{"tf":1.0},"121":{"tf":2.449489742783178},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"126":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"114":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":2.23606797749979},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":2.0},"125":{"tf":2.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"67":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}}},"m":{"1":{"df":45,"docs":{"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.4142135623730951},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"135":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"67":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"40":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.7320508075688772},"21":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"142":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":2.0},"30":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"113":{"tf":1.0},"145":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"76":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"46":{"tf":2.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}}},"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":{"146":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"6":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":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":{"121":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":3.0},"81":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"132":{"tf":1.7320508075688772},"23":{"tf":2.0},"5":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":31,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"39":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":2.0},"76":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"85":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":94,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":2.23606797749979},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":2.6457513110645907},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"3":{"tf":2.449489742783178},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"65":{"tf":3.1622776601683795},"66":{"tf":1.4142135623730951},"67":{"tf":3.4641016151377544},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"88":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":109,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.0},"10":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"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.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.0},"74":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":3.872983346207417},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":2.6457513110645907},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"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":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"68":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":2,"docs":{"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"60":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"30":{"tf":1.0},"57":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":14,"docs":{"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":2.0},"147":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"102":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"w":{"df":6,"docs":{"104":{"tf":2.0},"138":{"tf":1.0},"140":{"tf":1.0},"148":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.0},"11":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}},"e":{"df":2,"docs":{"110":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"58":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"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":{"c":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"12":{"tf":1.0},"142":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"81":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"94":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"133":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"146":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"44":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.6457513110645907},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":2.0},"21":{"tf":1.0},"35":{"tf":2.449489742783178},"74":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":4,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"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},"114":{"tf":1.0},"82":{"tf":2.0}}}}}}},"y":{"df":1,"docs":{"44":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":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":{"110":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}},"g":{"df":1,"docs":{"127":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"113":{"tf":1.0},"17":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.8284271247461903},"23":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"138":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"41":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"130":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"141":{"tf":1.0},"145":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":2.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"111":{"tf":1.0},"67":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"46":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"116":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"79":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"146":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"79":{"tf":1.0}},"t":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":3.4641016151377544},"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":2.0},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.8284271247461903},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}},"m":{"df":2,"docs":{"117":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":23,"docs":{"133":{"tf":2.23606797749979},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":2.23606797749979},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"67":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"n":{"df":1,"docs":{"67":{"tf":1.0}}},"r":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":2.23606797749979}}}},"i":{"d":{"df":35,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":17,"docs":{"104":{"tf":1.7320508075688772},"115":{"tf":1.0},"121":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.449489742783178},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"104":{"tf":1.0},"39":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"139":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"d":{"df":2,"docs":{"133":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"122":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"118":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"67":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"32":{"tf":2.23606797749979},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"132":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"118":{"tf":1.0},"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"112":{"tf":1.0},"140":{"tf":1.0},"21":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"29":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":14,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":4.47213595499958},"67":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"23":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":4.69041575982343},"7":{"tf":2.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":3.0},"51":{"tf":1.4142135623730951}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"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":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"53":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"109":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"131":{"tf":1.0},"132":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"127":{"tf":1.0},"67":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"105":{"tf":2.23606797749979},"137":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":2.0},"51":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"121":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"76":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"59":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"36":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"42":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"121":{"tf":1.0},"142":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":4,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"95":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"127":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"120":{"tf":1.0},"21":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"81":{"tf":2.449489742783178},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":2.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":2.449489742783178},"55":{"tf":1.0}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":13,"docs":{"104":{"tf":1.0},"121":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"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":{"105":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"55":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"47":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":2.23606797749979},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":4.242640687119285},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"56":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"3":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"140":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.6457513110645907}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"124":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":1.0},"142":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":2.23606797749979},"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},"79":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"107":{"tf":2.23606797749979},"44":{"tf":1.0},"67":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"138":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"56":{"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":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"56":{"tf":2.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"31":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"79":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"140":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":2,"docs":{"138":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"74":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":13,"docs":{"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":2.23606797749979}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":5,"docs":{"48":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"144":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"33":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":16,"docs":{"109":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"138":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"145":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"114":{"tf":1.0},"138":{"tf":1.0},"50":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"110":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":2.0}}}}},"l":{"df":1,"docs":{"113":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":3.3166247903554},"64":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"109":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"118":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"110":{"tf":1.0},"127":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}},"df":23,"docs":{"127":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":2.23606797749979},"57":{"tf":2.6457513110645907},"58":{"tf":2.0},"59":{"tf":3.872983346207417},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"81":{"tf":2.0},"95":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"39":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"121":{"tf":2.0},"127":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.6457513110645907},"64":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"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":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"0":{"tf":1.0},"142":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"114":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"115":{"tf":1.0},"95":{"tf":1.0}}}}},"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":2,"docs":{"55":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"121":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"148":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"109":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":73,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.3166247903554},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"142":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"113":{"tf":1.0},"64":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"55":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"b":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"127":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"81":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"121":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"104":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"44":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"46":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"46":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0}}},"v":{"df":4,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":151,"docs":{"0":{"tf":1.0},"1":{"tf":2.23606797749979},"10":{"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},"11":{"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},"12":{"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},"132":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"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},"15":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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},"7":{"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":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"140":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"141":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"67":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"137":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":16,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"32":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"55":{"tf":2.8284271247461903},"58":{"tf":2.0},"60":{"tf":1.0}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":7,"docs":{"104":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"60":{"tf":1.0},"76":{"tf":1.7320508075688772},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"r":{"df":1,"docs":{"133":{"tf":1.0}}},"v":{"df":4,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}}}},"z":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":2.23606797749979}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"2":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"4":{"df":1,"docs":{"133":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"30":{"tf":1.0},"57":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"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":{"128":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"119":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"110":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"112":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"102":{"tf":1.0}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"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":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"57":{"tf":1.0}}}},"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":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"m":{"1":{"df":3,"docs":{"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"126":{"tf":1.0}},"r":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"132":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"68":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"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":{"115":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"54":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"146":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"130":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"b":{"a":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"51":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"49":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"56":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"133":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"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":["Prologue.html#building-with-movement","week_1/week_1.html#week-1-introduction-to-move-and-movement","week_1/Inro_to_move.html#introduction-to-move-and-movement","week_1/Inro_to_move.html#libradiem","week_1/Inro_to_move.html#resource-orientation-and-the-blockchain","week_1/Inro_to_move.html#stack-model-programming-and-function-ownership","week_1/Inro_to_move.html#access-restriction-all-the-way-down","week_1/Inro_to_move.html#type-linearity-and-ownership","week_1/Inro_to_move.html#double-spending","week_1/Inro_to_move.html#virtual-machines-and-the-blockchain","week_1/Inro_to_move.html#smart-contracts-nodes-running-the-same-logic","week_1/Inro_to_move.html#verification-nodes-talking-about-running-the-same-logic","week_1/Inro_to_move.html#virtual-machine-makes-sure-the-same-logic-is-the-same-logic","week_1/Inro_to_move.html#move-virtual-machines","week_1/Inro_to_move.html#limitations-and-movement","week_1/Developer_setup.html#developer-setup","week_1/Developer_setup.html#the-move-ecosystem","week_1/Developer_setup.html#virtual-machines","week_1/Developer_setup.html#clis","week_1/Developer_setup.html#package-managers","week_1/Developer_setup.html#ide","week_1/Developer_setup.html#our-setup","week_1/Basic_move_syntax.html#basic-move-syntax","week_1/Basic_move_syntax.html#allocation-and-the-move-memory-model","week_1/Basic_move_syntax.html#expressions-and-control-flow","week_1/Basic_move_syntax.html#expressions","week_1/Basic_move_syntax.html#if","week_1/Basic_move_syntax.html#while-and-loop","week_1/Basic_move_syntax.html#types","week_1/Basic_move_syntax.html#primitives","week_1/Basic_move_syntax.html#abilities","week_1/Basic_move_syntax.html#generic-and-behavior","week_1/Basic_move_syntax.html#resources-references-and-mutation","week_1/Basic_move_syntax.html#misc-syntax","week_1/Module_and_build_system.html#modules-and-build-system","week_1/Module_and_build_system.html#packages","week_1/Module_and_build_system.html#program-types","week_1/Module_and_build_system.html#modules","week_1/Module_and_build_system.html#scripts","week_1/Module_and_build_system.html#building","week_1/Module_and_build_system.html#named_addresses","week_1/Debugging_basics.html#debugging-basic-smart-contracts","week_1/Debugging_basics.html#-helloworld","week_1/Debugging_basics.html#-fib","week_1/Debugging_basics.html#-datastructures","week_1/Debugging_basics.html#-resourceroulette","week_1/Movement_standard_library.html#movement-standard-library","week_1/Movement_standard_library.html#stddebug-and-aptos_stddebug","week_1/Movement_standard_library.html#stdvector-and-aptos_stdbig_vector","week_1/Movement_standard_library.html#aptos_stdtable","week_1/Movement_standard_library.html#stdoption","week_1/Movement_standard_library.html#aptos_framworkresource_account","week_1/Movement_standard_library.html#-resourceroulette-pt-2","week_1/Movement_standard_library.html#-minifs","week_2/week_2.html#week-2-advanced-move-and-move-for-movement","week_2/Generics.html#generics-type-constraints-and-polymorphism","week_2/Generics.html#generics","week_2/Generics.html#move-does-not-support-subtyping-or-composable-type-constraints","week_2/Generics.html#the-four-type-abilities-copy-drop-store-and-key","week_2/Generics.html#storage-polymorphism","week_2/Generics.html#unused-and-phantom-types","week_2/Generics.html#-movenav","week_2/Generics.html#the-future-of-move-type-programming","week_2/Safety.html#safety","week_2/Safety.html#linear-logic","week_2/Safety.html#move-type-system","week_2/Safety.html#the-move-prover","week_2/Intro_smart_contracts.html#introduction-to-smart-contracts","week_2/Intro_smart_contracts.html#origins-of-smart-contracts","week_2/Intro_smart_contracts.html#comparison--multicontractfib","week_2/Intro_smart_contracts.html#solidity","week_2/Intro_smart_contracts.html#anchor","week_2/Intro_smart_contracts.html#movement","week_2/Testing.html#testing","week_2/Testing.html#movement-profile-configuration","week_2/Testing.html#automated-testing","week_2/Testing.html#manual-testing","week_2/Testing.html#with-movement","week_2/Testing.html#semi-automation","week_2/Testing.html#testing-directives","week_2/Testing.html#test","week_2/Testing.html#test_only","week_2/Testing.html#expect_failure","week_2/Testing.html#mocks-stubs-and-state-based-simulation","week_2/Testing.html#mocks-and-stubs","week_2/Testing.html#state-based-simulation","week_2/Testing.html#for-movement","week_2/Design_patterns.html#design-patterns","week_2/Development_staging.html#smart-contracts-development-and-staging","week_2/Development_staging.html#development","week_2/Development_staging.html#move","week_2/Development_staging.html#movement","week_2/Development_staging.html#staging","week_3/week_3.html#week-3-m1-and-defi-applications","week_3/Deploying_on_M1.html#deploying-on-m1","week_3/Deploying_on_M1.html#-multicontractfib","week_3/Security.html#security","week_3/Security.html#m1","week_3/Security.html#attack-surface","week_3/Security.html#blockchain","week_3/Security.html#smart-contracts","week_3/Security.html#dapps","week_3/Security.html#handling-user-data","week_3/Security.html#data-minimization","week_3/Security.html#access-control","week_3/Security.html#encryption","week_3/Security.html#pseudonymization","week_3/Security.html#dos","week_3/Common_blockchain_system_design_patterns.html#common-blockchain-system-design-patterns","week_3/Common_blockchain_system_design_patterns.html#oracles","week_3/Common_blockchain_system_design_patterns.html#rollups","week_3/Common_blockchain_system_design_patterns.html#tokenization","week_3/Common_blockchain_system_design_patterns.html#state-channels","week_3/Common_blockchain_system_design_patterns.html#side-chains","week_3/Common_blockchain_system_design_patterns.html#collaborative-governance","week_3/Common_blockchain_system_design_patterns.html#atomic-swaps","week_3/Common_blockchain_system_design_patterns.html#proofs-and-zero-knowledge","week_3/Access_control.html#access-control","week_3/Access_control.html#signatures-and-certificates","week_3/Access_control.html#acls-rbac-and-abac","week_3/Access_control.html#permissioned-chains","week_3/DeFi.html#defi","week_3/DeFi.html#what-is-defi","week_3/DeFi.html#why-decentralize","week_3/DeFi.html#financial-applications-of-decentralized-systems","week_3/DeFi.html#purchasing","week_3/DeFi.html#lending","week_3/DeFi.html#trading","week_3/DeFi.html#defi-phenomena","week_3/DeFi.html#yield-farming","week_3/DeFi.html#flash-loans","week_3/DeFi.html#automated-market-making","week_3/DeFi.html#coins","week_3/DeFi.html#important-defi-algorithms","week_3/DeFi.html#constant-product-market-maker-cpmm-and-constant-mean-market-maker-cmmm","week_3/DeFi.html#fraud-proof-and-binary-search","week_3/DeFi.html#modern-portfolio-theory-mpt","week_3/DeFi.html#risk-models","week_4/week_4.html#week-4-projects","week_4/Project_requirements_and_recommendations.html#project-requirements-and-recommendations","week_4/Project_requirements_and_recommendations.html#requirements","week_4/Project_requirements_and_recommendations.html#project-recommendations","week_4/Project_requirements_and_recommendations.html#dapps","week_4/Project_requirements_and_recommendations.html#infrastructure","week_4/Project_requirements_and_recommendations.html#bounties","week_4/Project_requirements_and_recommendations.html#contribute","week_4/Guidelines.html#guidelines","week_4/Guidelines.html#requirements-gathering","week_4/Guidelines.html#pitching-and-presenting","week_4/Guidelines.html#crafting-a-paper-and-deck","week_4/Guidelines.html#the-pitch","week_4/Guidelines.html#the-presentation","week_4/Guidelines.html#support","week_4/Guidelines.html#general-outreach","week_4/Guidelines.html#bugs","week_4/Next_steps.html#next-steps"],"index":{"documentStore":{"docInfo":{"0":{"body":66,"breadcrumbs":4,"title":2},"1":{"body":30,"breadcrumbs":10,"title":5},"10":{"body":47,"breadcrumbs":13,"title":6},"100":{"body":130,"breadcrumbs":8,"title":2},"101":{"body":23,"breadcrumbs":7,"title":1},"102":{"body":0,"breadcrumbs":9,"title":3},"103":{"body":16,"breadcrumbs":8,"title":2},"104":{"body":43,"breadcrumbs":8,"title":2},"105":{"body":17,"breadcrumbs":7,"title":1},"106":{"body":21,"breadcrumbs":7,"title":1},"107":{"body":52,"breadcrumbs":7,"title":1},"108":{"body":0,"breadcrumbs":15,"title":5},"109":{"body":174,"breadcrumbs":11,"title":1},"11":{"body":36,"breadcrumbs":13,"title":6},"110":{"body":58,"breadcrumbs":11,"title":1},"111":{"body":67,"breadcrumbs":11,"title":1},"112":{"body":40,"breadcrumbs":12,"title":2},"113":{"body":43,"breadcrumbs":12,"title":2},"114":{"body":62,"breadcrumbs":12,"title":2},"115":{"body":43,"breadcrumbs":12,"title":2},"116":{"body":59,"breadcrumbs":13,"title":3},"117":{"body":12,"breadcrumbs":9,"title":2},"118":{"body":67,"breadcrumbs":9,"title":2},"119":{"body":119,"breadcrumbs":10,"title":3},"12":{"body":45,"breadcrumbs":15,"title":8},"120":{"body":68,"breadcrumbs":9,"title":2},"121":{"body":13,"breadcrumbs":7,"title":1},"122":{"body":35,"breadcrumbs":7,"title":1},"123":{"body":35,"breadcrumbs":7,"title":1},"124":{"body":0,"breadcrumbs":10,"title":4},"125":{"body":17,"breadcrumbs":7,"title":1},"126":{"body":235,"breadcrumbs":7,"title":1},"127":{"body":23,"breadcrumbs":7,"title":1},"128":{"body":0,"breadcrumbs":8,"title":2},"129":{"body":27,"breadcrumbs":8,"title":2},"13":{"body":38,"breadcrumbs":10,"title":3},"130":{"body":22,"breadcrumbs":8,"title":2},"131":{"body":37,"breadcrumbs":9,"title":3},"132":{"body":146,"breadcrumbs":7,"title":1},"133":{"body":0,"breadcrumbs":9,"title":3},"134":{"body":12,"breadcrumbs":16,"title":10},"135":{"body":18,"breadcrumbs":10,"title":4},"136":{"body":14,"breadcrumbs":10,"title":4},"137":{"body":16,"breadcrumbs":8,"title":2},"138":{"body":18,"breadcrumbs":6,"title":3},"139":{"body":15,"breadcrumbs":9,"title":3},"14":{"body":63,"breadcrumbs":9,"title":2},"140":{"body":26,"breadcrumbs":7,"title":1},"141":{"body":15,"breadcrumbs":8,"title":2},"142":{"body":34,"breadcrumbs":7,"title":1},"143":{"body":52,"breadcrumbs":7,"title":1},"144":{"body":34,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":11,"breadcrumbs":5,"title":1},"147":{"body":233,"breadcrumbs":6,"title":2},"148":{"body":0,"breadcrumbs":6,"title":2},"149":{"body":55,"breadcrumbs":7,"title":3},"15":{"body":13,"breadcrumbs":9,"title":2},"150":{"body":48,"breadcrumbs":5,"title":1},"151":{"body":64,"breadcrumbs":5,"title":1},"152":{"body":12,"breadcrumbs":5,"title":1},"153":{"body":13,"breadcrumbs":6,"title":2},"154":{"body":11,"breadcrumbs":5,"title":1},"155":{"body":10,"breadcrumbs":7,"title":2},"16":{"body":17,"breadcrumbs":9,"title":2},"17":{"body":64,"breadcrumbs":9,"title":2},"18":{"body":31,"breadcrumbs":8,"title":1},"19":{"body":42,"breadcrumbs":9,"title":2},"2":{"body":11,"breadcrumbs":10,"title":3},"20":{"body":21,"breadcrumbs":8,"title":1},"21":{"body":80,"breadcrumbs":8,"title":1},"22":{"body":22,"breadcrumbs":11,"title":3},"23":{"body":68,"breadcrumbs":12,"title":4},"24":{"body":0,"breadcrumbs":11,"title":3},"25":{"body":13,"breadcrumbs":9,"title":1},"26":{"body":42,"breadcrumbs":8,"title":0},"27":{"body":23,"breadcrumbs":9,"title":1},"28":{"body":0,"breadcrumbs":9,"title":1},"29":{"body":40,"breadcrumbs":9,"title":1},"3":{"body":68,"breadcrumbs":8,"title":1},"30":{"body":68,"breadcrumbs":9,"title":1},"31":{"body":55,"breadcrumbs":10,"title":2},"32":{"body":82,"breadcrumbs":11,"title":3},"33":{"body":28,"breadcrumbs":10,"title":2},"34":{"body":8,"breadcrumbs":11,"title":3},"35":{"body":59,"breadcrumbs":9,"title":1},"36":{"body":25,"breadcrumbs":10,"title":2},"37":{"body":26,"breadcrumbs":9,"title":1},"38":{"body":22,"breadcrumbs":9,"title":1},"39":{"body":146,"breadcrumbs":9,"title":1},"4":{"body":23,"breadcrumbs":10,"title":3},"40":{"body":28,"breadcrumbs":9,"title":1},"41":{"body":11,"breadcrumbs":13,"title":4},"42":{"body":56,"breadcrumbs":10,"title":1},"43":{"body":21,"breadcrumbs":10,"title":1},"44":{"body":32,"breadcrumbs":10,"title":1},"45":{"body":271,"breadcrumbs":10,"title":1},"46":{"body":24,"breadcrumbs":11,"title":3},"47":{"body":62,"breadcrumbs":10,"title":2},"48":{"body":10,"breadcrumbs":10,"title":2},"49":{"body":34,"breadcrumbs":9,"title":1},"5":{"body":91,"breadcrumbs":12,"title":5},"50":{"body":31,"breadcrumbs":9,"title":1},"51":{"body":17,"breadcrumbs":9,"title":1},"52":{"body":30,"breadcrumbs":11,"title":3},"53":{"body":17,"breadcrumbs":9,"title":1},"54":{"body":20,"breadcrumbs":12,"title":6},"55":{"body":31,"breadcrumbs":14,"title":4},"56":{"body":76,"breadcrumbs":11,"title":1},"57":{"body":173,"breadcrumbs":16,"title":6},"58":{"body":116,"breadcrumbs":17,"title":7},"59":{"body":208,"breadcrumbs":12,"title":2},"6":{"body":38,"breadcrumbs":11,"title":4},"60":{"body":132,"breadcrumbs":13,"title":3},"61":{"body":141,"breadcrumbs":11,"title":1},"62":{"body":13,"breadcrumbs":14,"title":4},"63":{"body":21,"breadcrumbs":8,"title":1},"64":{"body":31,"breadcrumbs":9,"title":2},"65":{"body":86,"breadcrumbs":10,"title":3},"66":{"body":70,"breadcrumbs":9,"title":2},"67":{"body":0,"breadcrumbs":12,"title":3},"68":{"body":397,"breadcrumbs":12,"title":3},"69":{"body":27,"breadcrumbs":11,"title":2},"7":{"body":35,"breadcrumbs":10,"title":3},"70":{"body":26,"breadcrumbs":10,"title":1},"71":{"body":28,"breadcrumbs":10,"title":1},"72":{"body":9,"breadcrumbs":10,"title":1},"73":{"body":15,"breadcrumbs":8,"title":1},"74":{"body":87,"breadcrumbs":10,"title":3},"75":{"body":117,"breadcrumbs":9,"title":2},"76":{"body":36,"breadcrumbs":9,"title":2},"77":{"body":184,"breadcrumbs":8,"title":1},"78":{"body":25,"breadcrumbs":9,"title":2},"79":{"body":7,"breadcrumbs":9,"title":2},"8":{"body":41,"breadcrumbs":9,"title":2},"80":{"body":45,"breadcrumbs":8,"title":1},"81":{"body":13,"breadcrumbs":8,"title":1},"82":{"body":83,"breadcrumbs":8,"title":1},"83":{"body":17,"breadcrumbs":12,"title":5},"84":{"body":97,"breadcrumbs":9,"title":2},"85":{"body":37,"breadcrumbs":10,"title":3},"86":{"body":129,"breadcrumbs":8,"title":1},"87":{"body":17,"breadcrumbs":10,"title":2},"88":{"body":0,"breadcrumbs":14,"title":4},"89":{"body":10,"breadcrumbs":11,"title":1},"9":{"body":24,"breadcrumbs":10,"title":3},"90":{"body":63,"breadcrumbs":11,"title":1},"91":{"body":28,"breadcrumbs":11,"title":1},"92":{"body":35,"breadcrumbs":11,"title":1},"93":{"body":11,"breadcrumbs":10,"title":5},"94":{"body":38,"breadcrumbs":9,"title":2},"95":{"body":24,"breadcrumbs":8,"title":1},"96":{"body":17,"breadcrumbs":7,"title":1},"97":{"body":23,"breadcrumbs":7,"title":1},"98":{"body":0,"breadcrumbs":8,"title":2},"99":{"body":98,"breadcrumbs":7,"title":1}},"docs":{"0":{"body":"Welcome to Building with Movement ! Over the course of this booklet, we will be addressing topics related to developing for the Movement blockchain. This booklet was originally developed for a month-long hackathon, and so has content covering four weeks. While we think this pacing is nice, the book is concise enough to do in far less time and resumable enough to spread out over more time. By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages. If you are looking for in-depth documentation of Movement or the movement CLI please head to docs.movementlabs.xyz . This book has an accompanying GitHub repository here. You can also navigate to it by clicking the icon on any page.","breadcrumbs":"Building with Movement » Building with Movement","id":"0","title":"Building with Movement"},"1":{"body":"This week kicks off our exploration of the Move language and Movement ecosystem. We will begin by introducing Move, setting up an appropriate developer environment, and covering the basics of the Move language. Many of the topics concerning the move language will be revisited in greater depth during Week 2.","breadcrumbs":"Week 1: Introduction to Move and Movement » Week 1: Introduction to Move and Movement","id":"1","title":"Week 1: Introduction to Move and Movement"},"10":{"body":"Smart contracts are self-executing agreements with predefined conditions encoded in code. In the blockchain context, smart contracts are executed by nodes across the network. Virtual machines, such as the Move Virtual Machine (Move VM) used in the Move programming language, ensure that all nodes interpret and execute the smart contract code uniformly. This guarantees that the same logic is executed across the network, promoting trust and enabling reliable transaction execution.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Smart Contracts: Nodes Running the Same Logic","id":"10","title":"Smart Contracts: Nodes Running the Same Logic"},"100":{"body":"Environment Smart contracts rely on the execution environment in which they run. Insecure environments can expose smart contracts to attacks, such as sandbox escapes or unauthorized access to system resources. External dependencies Smart contracts often interact with external systems or data sources. These dependencies can introduce security risks, such as malicious data feeds or vulnerabilities in the connected systems. Code vulnerabilities Flaws in the code of smart contracts can lead to various vulnerabilities, including reentrancy attacks, integer overflow/underflow, and logic errors. These vulnerabilities can be exploited to manipulate contract behavior or steal funds. Thankfully, thanks to its type-system, resource-orientation, and linear programming model, the Move language makes it difficult to publish code with many of the common smart contract vulnerabilities. Upgradability The ability to upgrade smart contracts introduces potential security risks. Unauthorized or malicious upgrades can compromise the integrity of the contract or introduce vulnerabilities that can be exploited. Thankfully, the Move language introduces the concept of modules, which are self-contained units of code that encapsulate the functionality of smart contracts. Unlike traditional smart contracts, Move modules can be upgraded without disrupting the entire system or requiring complex migration processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Smart contracts","id":"100","title":"Smart contracts"},"101":{"body":"Integration risks Decentralized applications (dApps) often integrate with external services or APIs. Insecure integration points can expose dApps to security risks, such as unauthorized data access or injection of malicious code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » dApps","id":"101","title":"dApps"},"102":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Handling User Data","id":"102","title":"Handling User Data"},"103":{"body":"Blockchain applications should follow the principle of data minimization, collecting only the necessary data and avoiding the storage of sensitive information that is not required for the application's functionality.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Data minimization","id":"103","title":"Data minimization"},"104":{"body":"Proper access control mechanisms should be implemented to ensure that only authorized individuals or entities can access sensitive user data. This includes authentication, authorization, and secure role-based access control. Move uses an account-based ownership model where each account has its own address and associated permissions. Access control can be enforced at the account level, ensuring that only authorized users can perform specific actions.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Access control","id":"104","title":"Access control"},"105":{"body":"Sensitive user data stored in the blockchain or associated systems should be encrypted to protect it from unauthorized access. Encryption algorithms and protocols should be carefully chosen and implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Encryption","id":"105","title":"Encryption"},"106":{"body":"To enhance privacy, blockchain applications can pseudonymize user data by replacing personally identifiable information with pseudonyms or cryptographic identifiers. This makes it difficult to directly link user identities to their data.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Pseudonymization","id":"106","title":"Pseudonymization"},"107":{"body":"Denial-of-Service (DoS) attacks aim to disrupt the availability of a blockchain application or the entire network by overwhelming the system with an excessive amount of requests or by exploiting vulnerabilities in the network's infrastructure. DoS attacks can result in service unavailability or degradation, impacting the application's functionality and user experience. Implementing robust DoS mitigation strategies is essential to protect against such attacks. As mentioned above, Avalanche's adaptive security approach it difficult to successfully deny network service.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » DoS","id":"107","title":"DoS"},"108":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Common blockchain system design patterns","id":"108","title":"Common blockchain system design patterns"},"109":{"body":"Oracles play a crucial role in blockchain applications by providing a bridge between the blockchain and the external world. They are trusted entities or mechanisms that bring off-chain data onto the blockchain, making it accessible to smart contracts and decentralized applications. Oracles enable the blockchain to interact with real-world events, data feeds, APIs, and other external systems. By leveraging oracles, blockchain applications can access and process external information in a reliable and secure manner. We built 💻 NewsMoves, examples/movement/new_moves, as a toy oracle contract that allows a trusted entity to write the latest Google news articles onto the blockchain. Please checkout the directory to publish the contract and run the Python data entity. module news_moves::news_moves { use std::signer; use std::vector; // Struct representing a news article entry struct Article has copy { timestamp: u64, title: vector, content: vector, } // NewsMoves struct representing the contract state struct NewsMoves { articles: vector
, } // Initialization function for the NewsMoves contract public fun init() { move_to(@news_moves, NewsMoves { articles: vector::empty
(), }); } public fun update( account: &signer, timestamp: u64, title: vector, content: vector, ) acquires NewsMoves { // update the contract at the account let account_addr = signer::address_of(account); let self = borrow_global_mut(account_addr); // add the new article vector::push_back(&mut self.articles, Article { timestamp: timestamp, title: title, content: content, }); } // Function to get the latest news article from the contract public fun getLatestArticle(): Article { // Get the latest article from the contrac let moves = borrow_global(@news_moves); let len = vector::length(&articles); assert(len > 0, 98); // Ensure there is at least one article let latestArticleIndex = len - 1; *moves.articles[latestArticleIndex] } }","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Oracles","id":"109","title":"Oracles"},"11":{"body":"Verification is a critical aspect of the blockchain ecosystem. Nodes need to agree on the validity of transactions and smart contract execution. Virtual machines facilitate this verification process by providing a standardized environment where nodes can discuss and agree upon the execution of the same logic. By achieving consensus on the outcomes, nodes can ensure the integrity and consistency of the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Verification: Nodes Talking About Running the Same Logic","id":"11","title":"Verification: Nodes Talking About Running the Same Logic"},"110":{"body":"Rollups are a layer 2 scaling solution for blockchains that aim to improve scalability and reduce transaction costs. They work by aggregating multiple transactions off-chain and then submitting a summary or proof of those transactions to the main chain. This reduces the burden on the main chain, allowing for faster and more efficient processing. Rollups can significantly increase transaction throughput and enable complex applications to run smoothly on the blockchain while maintaining a high level of security. We added a toy dispute mechanism 💻 NewsMoves, examples/movement/new_moves to demonstrate how part of a rollup could implemented.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Rollups","id":"110","title":"Rollups"},"111":{"body":"Tokenization is the process of representing real-world or digital assets as tokens on a blockchain. It enables the creation of digital representations (tokens) that can be owned, transferred, and managed on the blockchain. Tokenization has broad applications, ranging from representing physical assets like real estate or artwork to creating digital assets like utility tokens or security tokens. By tokenizing assets, blockchain-based systems can provide increased liquidity, fractional ownership, and facilitate seamless transferability of assets in a secure and transparent manner. We implement a toy tokenization scheme and separately used our framework's aptos_token_objects to augment 💻 NewsMoves, examples/movement/new_moves and demonstrate Movement token utilities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Tokenization","id":"111","title":"Tokenization"},"112":{"body":"State channels are a scalability solution in blockchain that allows off-chain execution of transactions between participants. They enable fast and low-cost transactions by keeping most of the interactions off-chain, while the final state is settled on the main blockchain. State channels are particularly useful for frequent and fast interactions, such as microtransactions or gaming applications, as they reduce congestion and improve transaction throughput.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » State Channels","id":"112","title":"State Channels"},"113":{"body":"Side chains are separate blockchains that are connected to the main blockchain, often referred to as the \"main chain\" or \"parent chain.\" They provide an additional layer of scalability and flexibility by allowing specific use cases or applications to operate on their own chain while still being interoperable with the main chain. Side chains can handle transactions and smart contracts independently, reducing the load on the main chain and enabling specialized functionalities.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Side Chains","id":"113","title":"Side Chains"},"114":{"body":"Collaborative governance refers to the process of making collective decisions and managing blockchain networks through the participation and collaboration of multiple stakeholders. It involves mechanisms such as voting, consensus-building, and community-driven decision-making to govern the rules, upgrades, and overall direction of a blockchain network. Collaborative governance aims to ensure inclusivity, transparency, and alignment of interests among network participants. aptos_framework::aptos_governance provides a host of out of the box tools for handling proposals, dynamic voting systems, and member rewards. Using it you can implement a DAO and tests in a about a thousand lines of code.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Collaborative Governance","id":"114","title":"Collaborative Governance"},"115":{"body":"Atomic swaps are a mechanism that allows the exchange of different cryptocurrencies or digital assets between two parties without the need for an intermediary or trusted third party. It enables secure peer-to-peer transactions directly between participants, ensuring that either the entire transaction is executed or none of it occurs. Atomic swaps enhance interoperability and facilitate decentralized exchanges by eliminating the need for centralized intermediaries.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Atomic Swaps","id":"115","title":"Atomic Swaps"},"116":{"body":"Zero-knowledge proofs are cryptographic techniques that enable a party to prove knowledge of certain information without revealing the actual information itself. They allow for privacy-preserving transactions and interactions on the blockchain, where participants can validate the correctness of a statement or the possession of certain data without disclosing sensitive details. Zero-knowledge proofs enhance confidentiality and confidentiality in blockchain applications, ensuring that privacy-sensitive information remains secure while still being verifiable. At Movement, we're working on a Zero-Knowledge VM powered by the Move Prover.","breadcrumbs":"Week 3: M1 and DeFi Applications » Common Blockchain System Design Patterns » Proofs and Zero-Knowledge","id":"116","title":"Proofs and Zero-Knowledge"},"117":{"body":"This section briefly covers some considerations of blockchain access control and highlights places where Movement and this repo may be helpful.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Access Control","id":"117","title":"Access Control"},"118":{"body":"Signatures and certificates play a crucial role in access control on the blockchain. They enable authentication and ensure that only authorized entities can perform specific actions or access certain resources. Signatures provide proof of ownership and authenticity, while certificates verify the identity and permissions of participants. By utilizing strong cryptographic signatures and certificates, blockchain applications can establish secure and tamper-proof access control mechanisms. Avalanche uses Transport Layer Security, TLS, to protect node-to-node communications from eavesdroppers. The Avalanche virtual machine uses elliptic curve cryptography, specifically secp256k1, for its signatures on the blockchain, and signs all messages.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Signatures and certificates","id":"118","title":"Signatures and certificates"},"119":{"body":"Access Control Lists (ACLs), Role-Based Access Control (RBAC), and Attribute-Based Access Control (ABAC) are common frameworks used to manage and enforce access control policies in blockchain applications. ACLs define permissions based on a list of entities and their associated access rights. RBAC assigns permissions to roles, allowing for more centralized management of access control. ABAC grants access based on attributes, such as user attributes or environmental conditions. Each framework has its strengths and can be tailored to meet specific access control requirements in a blockchain application. A common pattern in Move and Movement development is to assert a contract owner. Using named addresses, @named_address. script owner_address::important_script { const ERNO_OWNER_ONLY : u64 = 0 fun do_important_thing(signer : address){ assert!(signer == @owner_address, ERNO_OWNER_ONLY); // do thing... } } Manipulation of addresses often serves as the basis for Movement access control mechanisms. The Move language provides host of unique safe ways to implement access controls for resources. aptos_framework::aptos_governance provides an easy to use module for governance which can allow for decentralized managed of these control lists.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » ACLs, RBAC, and ABAC","id":"119","title":"ACLs, RBAC, and ABAC"},"12":{"body":"The virtual machine acts as an execution environment for smart contracts and other blockchain operations. It ensures that the same logic applied to a smart contract on one node is identical to the logic applied on every other node. This consistency is essential for achieving consensus and maintaining the immutability of the blockchain. Virtual machines, such as the Move VM, enforce the rules and protocols defined by the blockchain platform, allowing for secure and reliable execution of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual Machine: Makes Sure the Same Logic is the Same Logic","id":"12","title":"Virtual Machine: Makes Sure the Same Logic is the Same Logic"},"120":{"body":"Permissioned chains are blockchain networks that restrict participation to authorized entities only. Unlike public or permissionless blockchains, permissioned chains require participants to obtain explicit permission or be part of a predefined set of trusted entities. Permissioned chains are often employed in enterprise or consortium settings, where privacy, confidentiality, and control over network participants are paramount. By leveraging permissioned chains, blockchain applications can enforce stricter access control and maintain a trusted network environment. While the Movement testnet is not a permissioned chain, our virtual machines strong access controls--due to the Move language--make it easy to restrict access to select resources.","breadcrumbs":"Week 3: M1 and DeFi Applications » Access Control » Permissioned chains","id":"120","title":"Permissioned chains"},"121":{"body":"This section treats with a general overview DeFi problems and solution, and the faculties of Movement M1 to help create these solutions.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi","id":"121","title":"DeFi"},"122":{"body":"Decentralized Finance (DeFi) refers to a category of financial applications and platforms built on blockchain networks that aim to provide open, permissionless, and decentralized alternatives to traditional financial systems. DeFi leverages the transparency, immutability, and programmability of blockchain technology to enable financial activities without the need for intermediaries or centralized authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » What is DeFi?","id":"122","title":"What is DeFi?"},"123":{"body":"Decentralization in DeFi brings several advantages, including increased transparency, censorship resistance, improved accessibility, and reduced reliance on trusted third parties. By removing intermediaries and enabling peer-to-peer transactions, decentralization can enhance efficiency, reduce costs, and empower individuals to have more control over their financial activities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Why Decentralize?","id":"123","title":"Why Decentralize?"},"124":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Financial Applications of Decentralized Systems","id":"124","title":"Financial Applications of Decentralized Systems"},"125":{"body":"Decentralized systems allow for the direct peer-to-peer purchase of digital assets, cryptocurrencies, and other goods or services without the need for intermediaries or central authorities.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Purchasing","id":"125","title":"Purchasing"},"126":{"body":"DeFi platforms enable individuals to lend and borrow funds directly from other users through smart contracts, removing the need for traditional financial intermediaries such as banks. Check out examples/movement/gimme_mini for a toy implementation of both a direct and peer-pooled lending platform. // example supply function from gimme_mini direct lending platform\npublic fun supply( account: &signer, market_obj: Object, underlying_fa: FungibleAsset\n): FungibleAsset acquires Vault, Market { assert!( fungible_asset::asset_metadata(&underlying_fa) == fungible_asset::store_metadata(market_obj), ERR_MARKET_MISMATCH ); let underlying_amount = fungible_asset::amount(&underlying_fa); // update market fungible store fungible_asset::deposit(market_obj, underlying_fa); // mint ctoken let ctoken_amount = underlying_to_ctoken(market_obj, underlying_amount); let market = borrow_global_mut(object::object_address(&market_obj)); let ctoken = fungible_asset::mint(&market.ctoken_mint_ref, ctoken_amount); // update user vault init_vault_if_not_exists(account); let vault = borrow_global_mut(signer::address_of(account)); if (!vector::contains(&vault.collaterals, &market_obj)) { vector::push_back(&mut vault.collaterals, market_obj); }; ctoken\n} module peer_pooled_lend::peer_pooled_lend { use std::signer; friend mini_lend::LoanOfficer; /// Lends funds to liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough funds to lend. /// 2. Check for suspicious activity. /// 2. If account has enough funds to lend... /// 1. MiniLend will transfer funds from account to liquidity pool. public fun lend(account : signer, amount : u64){ // ... } /// Allows lender to seek repayment from liquidity pool. /// 1. LoanOfficer will... /// 1. Determine whether account is lender. /// 2. Determine loan period is up. /// 2. If the account is a valid lender and the loan period is up... /// 1. MiniLend will transfer funds from liquidity pool to account or self-collateralize. public fun seek_repayment(account : signer, amount : u64){ // ... } /// Borrows funds from liquidity pool. /// 1. LoanOfficer will... /// 1. Check if account has enough collateral /// 2. Check account credit. /// 3. If account has enough collateral and credit... /// 2. If account has enough collateral and credit... /// 1. MiniLend will borrow funds from liquidity pool /// 3. Whether or not the account will successully borrow funds, run the audit function. public fun borrow(account : signer, amount : u64){ // ... } public fun repay(account : signer, amount : u64){ // ... } /// Looks over loan tables and dispatches events to manage loans /// Anyone can call this function enabling decentralized book keeping. public fun audit(account : signer){ // ... } }","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Lending","id":"126","title":"Lending"},"127":{"body":"Decentralized exchanges (DEXs) facilitate trustless trading of digital assets directly between users, eliminating the need for centralized order books and custody of funds by intermediaries. Movement has an ready-made DEX.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Trading","id":"127","title":"Trading"},"128":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » DeFi Phenomena","id":"128","title":"DeFi Phenomena"},"129":{"body":"Yield farming involves leveraging various DeFi protocols to maximize returns on cryptocurrencies or digital assets by providing liquidity, staking, or participating in other activities to earn additional rewards. Check out examples/movement/yield_gardner for a toy implementation of a yield farmer.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Yield Farming","id":"129","title":"Yield Farming"},"13":{"body":"Several implementations of the Move virtual machine exist, including the Move VM, Aptos VM, and Sui VM. These implementations provide alternative approaches to executing Move code and offer flexibility and compatibility with different blockchain platforms and ecosystems. Each implementation has its own characteristics, optimizations, and use cases, catering to diverse blockchain development requirements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Move Virtual Machines","id":"13","title":"Move Virtual Machines"},"130":{"body":"Flash loans are uncollateralized loans that allow users to borrow funds temporarily for specific transactions within a single blockchain transaction. They exploit the composability and fast transaction finality of smart contracts.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Flash Loans","id":"130","title":"Flash Loans"},"131":{"body":"Automated market makers (AMMs) are decentralized protocols that use mathematical formulas to determine asset prices and provide liquidity for trading. They have revolutionized liquidity provision in DeFi by eliminating the need for order books and enabling continuous trading. Check out examples/movement/gimme_mini for a toy implementation of a lending platform built atop the liquidswap AMM.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Automated Market Making","id":"131","title":"Automated Market Making"},"132":{"body":"Coins are typically created and recorded on the blockchain through a consensus mechanism, ensuring their authenticity and immutability. They can be transferred between participants on the network, used for transactions, and sometimes serve additional purposes such as voting rights or access to certain functionalities within decentralized applications (dApps) built on the blockchain. Coins play a fundamental role in enabling economic activity and incentivizing participation within the blockchain ecosystem. Movement provides built-in utilties to easily create and managed coins at varying levels of abstraction. // A managed coin.\n//:!:>sun\nmodule sun_coin::sun_coin { struct SunCoin {} fun init_module(sender: &signer) { aptos_framework::managed_coin::initialize( sender, b\"Sun Coin\", b\"SUN\", 6, false, ); }\n}\n//<:!:sun // Handling coin transactions\nscript { use aptos_framework::coin; use std::vector; // There are two ways to approach this problem // 1. Withdraw the total then distribute the pieces by breaking it up or // 2. Transfer for each amount individually fun main(sender: &signer, split : vector
, amount: u64) { let i = 0; let len = vector::length(split); let coins = coin::withdraw(sender, amount); while (i < len) { let coins_pt = coin::extract(&mut coins, amount / len); coin::deposit( vector::borrow(split, i), coins_pt ); }; }\n} Stablecoins are a type of coin that aims to maintain a stable value, typically pegged to a fiat currency like the US Dollar or a basket of assets. They provide price stability, making them suitable for various use cases within the decentralized finance ecosystem.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Coins","id":"132","title":"Coins"},"133":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Important DeFi Algorithms","id":"133","title":"Important DeFi Algorithms"},"134":{"body":"These algorithms are used in AMMs to maintain liquidity and determine prices based on the constant product or mean principles.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)","id":"134","title":"Constant Product Market Maker (CPMM) and Constant Mean Market Maker (CMMM)"},"135":{"body":"These algorithms enhance security in DeFi protocols by detecting and mitigating potential fraud or malicious activities. Binary search is often used to optimize search and validation processes.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Fraud Proof and Binary Search","id":"135","title":"Fraud Proof and Binary Search"},"136":{"body":"MPT is applied in DeFi to optimize asset allocation and portfolio management, considering risk, returns, and correlations among different assets.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Modern Portfolio Theory (MPT)","id":"136","title":"Modern Portfolio Theory (MPT)"},"137":{"body":"DeFi relies on various risk models and methodologies to assess and manage risks associated with lending, borrowing, and other financial activities in decentralized systems.","breadcrumbs":"Week 3: M1 and DeFi Applications » DeFi » Risk Models","id":"137","title":"Risk Models"},"138":{"body":"Week 4 is all about building projects. If you're reading through this notebook outside of our hackathon, we hope you find the resources useful for building your first Movement project.","breadcrumbs":"Week 4: Projects » Week 4: Projects","id":"138","title":"Week 4: Projects"},"139":{"body":"In this section we discuss project requirements and recommendations. Many of the recommendations involve working on technologies that we're keen on developing and incubating for Movement!","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project Requirements and Recommendations","id":"139","title":"Project Requirements and Recommendations"},"14":{"body":"The transaction processing speed (TPS) of the underlying blockchain is a primary limitation on smart contract complexity. Higher TPS allows for more intricate and computationally intensive smart contracts to be executed within a given time frame. Movement facilitates a theoretical maximum TPS of 160,000 by combining the technologies of Move and Avalanche Snowball consensus. This scalability enhancement enables more sophisticated and resource-intensive smart contracts to be processed efficiently. In addition to its high TPS, Movement provides developer-friendly features via its Aptos-based VM and an ergonomic standard library .","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Limitations and Movement","id":"14","title":"Limitations and Movement"},"140":{"body":"For all hackathon participants, we expect... a pitch deck, a paper, links to source developed during the hackathon. We've included templates for LaTeX and PPT in the templates/presentation folder. You will make five minute pitches using your deck at the end of the hackathon.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Requirements","id":"140","title":"Requirements"},"141":{"body":"There are a variety of ways to use and contribute to the Movement ecosystem. These include dApp development, infrastructure development, bounties, and direct contributions to our software.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Project recommendations","id":"141","title":"Project recommendations"},"142":{"body":"The content of this course should have prepared you to work on dApps such as the following. Continue with 💻 GimmeMini, examples/movement/gimme_mini Continue with 💻 MiniDex, examples/movement/mini_dex. Create a mini oracle provider, rollup provider, or validator set management system. You may wish to continue from 💻 NewsMoves examples/movement/new_moves Decentralized Twitter clone. You may fish to continue from 💻 MyFirstDapp examples/movement/my_first_dapp.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » dApps","id":"142","title":"dApps"},"143":{"body":"We're all about continuing to build out the Movement ecosystem to empower more awesome developers like you. At the time of writing, the following are all things we have a close eye on. Connect a new wallet! Right now we only support Pontem on testnet. Create an L2 that allows us to deposit levered funds in another protocol. Create a framework for borrowing funds against an asset. Create a framework that allows for customizable liquidity strategies. Build integrations with Perp . Develop a stable swap with another subnet","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Infrastructure","id":"143","title":"Infrastructure"},"144":{"body":"We've also put together a zealy.io community. Some of our bounties include. Report UI/UX bug Report backend bug Deploy App with 100 unique smart contract interactions Community Award To 3 Most used dApps Screenshot using App Deploy project from Aptos / Sui Contribute to Champions","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Bounties","id":"144","title":"Bounties"},"145":{"body":"We welcome contributions to our source, including the movement-hack repo from which this book is sourced. Generally speaking we encourage you to... Develop new starter code and example modules. Submit PRs against open issues. Improve documentation.","breadcrumbs":"Week 4: Projects » Project Requirements and Recommendations » Contribute","id":"145","title":"Contribute"},"146":{"body":"This section outlines some best practices for the project and Movement success, as well as how to get in touch with the team for support.","breadcrumbs":"Week 4: Projects » Guidelines » Guidelines","id":"146","title":"Guidelines"},"147":{"body":"Requirements gathering is a critical phase in the software development process that involves capturing, analyzing, and documenting the needs and expectations of stakeholders. It lays the foundation for a successful project by ensuring a clear understanding of what needs to be built. Here are some steps for successful requirements gathering: Identify Stakeholders: Identify and involve all relevant stakeholders, including clients, end-users, subject matter experts, and other project team members. Each stakeholder brings unique perspectives and insights into the project requirements. Define the Scope: Clearly define the scope of the project by outlining its objectives, boundaries, and limitations. This helps set realistic expectations and ensures that the requirements gathering process remains focused. Conduct Interviews and Workshops: Engage in one-on-one interviews and group workshops with stakeholders to gather their input, understand their needs, and identify any existing challenges or pain points. Encourage open and honest communication to capture comprehensive requirements. Document Requirements: Document the gathered requirements in a structured manner, ensuring clarity, completeness, and traceability. Use techniques such as use cases, user stories, functional and non-functional requirements, and process flows to capture different aspects of the system. Validate and Verify: Validate the gathered requirements by reviewing them with stakeholders to ensure accuracy and alignment with their expectations. Seek their feedback and address any concerns or discrepancies. Verify the requirements against the project objectives and constraints. Prioritize Requirements: Prioritize the requirements based on their importance, urgency, and impact on project success. Collaborate with stakeholders to establish a clear understanding of the most critical and high-priority features. Iterate and Refine: Requirements gathering is an iterative process. Continuously refine and iterate the requirements based on feedback, changing project needs, and evolving stakeholder requirements. Regularly communicate and collaborate with stakeholders to ensure ongoing alignment. Remember, successful requirements gathering involves effective communication, active listening, and collaboration with stakeholders throughout the process. By following these steps, developers can gather comprehensive and accurate requirements that form a solid foundation for successful software development. If you require further assistance or guidance, feel free to reach out to Movement Labs using the contact information below in Support .","breadcrumbs":"Week 4: Projects » Guidelines » Requirements Gathering","id":"147","title":"Requirements Gathering"},"148":{"body":"","breadcrumbs":"Week 4: Projects » Guidelines » Pitching and presenting","id":"148","title":"Pitching and presenting"},"149":{"body":"Crafting a concise and visually appealing pitch deck is crucial for effectively presenting your small blockchain project at the end of a hackathon. Structure your deck to highlight the problem your project solves, the solution you've developed, the target market, and the unique value it offers. Emphasize the key features and benefits of your project, along with any notable achievements during the hackathon. Use clear and concise language, visual aids, and a consistent design to enhance the overall presentation. We've provided a templates for LaTeX and PPT in presentations/templates.","breadcrumbs":"Week 4: Projects » Guidelines » Crafting a paper and deck","id":"149","title":"Crafting a paper and deck"},"15":{"body":"This section examines tooling and provides setup instructions for working with the Movement blockchain and the various examples in covered in this booklet.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Developer Setup","id":"15","title":"Developer Setup"},"150":{"body":"During the pitch, focus on delivering a compelling and concise message that captures the attention of the judges and participants. Clearly articulate the problem your project addresses, the solution it provides, and how it leverages blockchain technology. Highlight the practical applications, benefits, and potential market opportunities of your project. Demonstrate how your project differentiates itself from existing solutions and how it aligns with the hackathon's theme or challenges. Be confident, enthusiastic, and passionate about your project, conveying the potential impact and value it brings.","breadcrumbs":"Week 4: Projects » Guidelines » The pitch","id":"150","title":"The pitch"},"151":{"body":"When delivering your presentation, aim for clarity, professionalism, and effective communication. Begin with a concise and attention-grabbing introduction to hook the audience. Provide a brief overview of your project's development process, focusing on the key milestones achieved during the hackathon. Showcase any live demos, prototypes, or working features of your project, demonstrating its functionality and value proposition. Highlight the technical aspects of your project, such as the blockchain technology used, any smart contracts implemented, and the scalability or security measures in place. Conclude your presentation with a compelling call-to-action, inviting the judges and participants to engage with your project and explore its potential.","breadcrumbs":"Week 4: Projects » Guidelines » The presentation","id":"151","title":"The presentation"},"152":{"body":"We're happy to support all developers on Movement. Whatever your problems, needs or desires, we hope we can help out.","breadcrumbs":"Week 4: Projects » Guidelines » Support","id":"152","title":"Support"},"153":{"body":"For general questions, comments, and concerns please email liam@movementlabs.xyz or open up a new discussion in movemntdev/movement-hack .","breadcrumbs":"Week 4: Projects » Guidelines » General outreach","id":"153","title":"General outreach"},"154":{"body":"If you believe you've identified a bug, please create an issue in movemntdev/movement-hack . We will triage accordingly.","breadcrumbs":"Week 4: Projects » Guidelines » Bugs","id":"154","title":"Bugs"},"155":{"body":"Now that you've completed this book and your projects, we invite you to provide your feedback and stay in touch!","breadcrumbs":"Week 4: Projects » Next Steps » Next Steps","id":"155","title":"Next Steps"},"16":{"body":"The budding Move ecosystem sports a variety of developer friendly tools. As we list off tools that will be relevant to this booklet, keep in mind that there are number of projects we have not included.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » The Move ecosystem","id":"16","title":"The Move ecosystem"},"17":{"body":"As previously discussed, there are several virtual machine implementations available for Move development--each of with is paired with particular blockchain. Besides the Movement VM, the most well-known Move virtual machines are Move VM, Aptos VM, and Sui VM We provide a comparison of these different virtual machines in our docs . When selecting a virtual machine for development its important to consider performance, ease of use, and stability. Aptos VM built upon the original and stable Move VM to provide an improved developer experience. The Movement VM builds upon Aptos VM to provide improved performance.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Virtual machines","id":"17","title":"Virtual machines"},"18":{"body":"There are three CLIs worth note in the Move language development space. All support building, testing, deploying, and running smart contracts. move : the original CLI for Move development. aptos: the CLI for Aptos development. movement : our very own CLI. In this booklet we will be working with move and movement.","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » CLIs","id":"18","title":"CLIs"},"19":{"body":"Move has a package manager, movey . However, generally we will recommend adding dependencies directly to your Move.toml file. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Package managers","id":"19","title":"Package managers"},"2":{"body":"This section is intended to orient the reader on the history of the language and various Move virtual machine implementations.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Introduction to Move and Movement","id":"2","title":"Introduction to Move and Movement"},"20":{"body":"There are several useful development enviroments for Move. This book will be geared towards using VsCode because of the its developer container features and its Move analyzer . However, syntax highlighting has been implemented for other IDEs including Vim .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » IDE","id":"20","title":"IDE"},"21":{"body":"We'll be using the move and movement CLIs; no package manager; and VsCode most-often running the movement-dev Docker container from public.ecr.aws/c4i6k4r8/movement-dev . To get started... Clone the repo from which this book originates: https://github.com/movemntdev/movement-hack Open the repo in VsCode. Based on the advice provided for a given project, reopen the repo in one of move, movement-dev, anchor, or solidity devcontainers . Alternatively, when working with movement-dev you may: docker image pull public.ecr.aws/c4i6k4r8/movement-dev\ndocker run -it -v \"$(pwd):/workspace\" public.ecr.aws/c4i6k4r8/movement-dev /bin/bash We will also occasionally use Rust and Python to complete various programming examples. We will also discuss using our proxy service with the JavaScript. The movement-dev developer container provides an easy start place for this alternative means of interacting with the subnet .","breadcrumbs":"Week 1: Introduction to Move and Movement » Developer Setup » Our Setup","id":"21","title":"Our Setup"},"22":{"body":"This section treats with basic Move syntax, comparing the language to Rust. This is merely intended to provide some guidance for booklet participants. More comprehensive guides can be found at move-book.com and move-language.github.io .","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Basic Move Syntax","id":"22","title":"Basic Move Syntax"},"23":{"body":"Move's resource-oriented language model leads to a unique memory model: Resources in Move are allocated and deallocated implicitly based on their defined lifespan and ownership semantics. This ensures proper resource management without the need for explicit memory allocation or deallocation. Resources are created and stored on the blockchain as part of a transaction, providing a persistent and tamper-resistant storage mechanism. Global storage in Move allows for the storage of resource data that can be accessed across multiple transactions and smart contracts. While function ownership in Move is similar to Rust, it is less permissive and closer to being purely linear--restricting the set of possible borrows.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Allocation and the Move Memory Model","id":"23","title":"Allocation and the Move Memory Model"},"24":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions and Control Flow","id":"24","title":"Expressions and Control Flow"},"25":{"body":"Move use a similar expression-orientation to Rusts. Block returns are possible. fun eight() : u8 { 8\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Expressions","id":"25","title":"Expressions"},"26":{"body":"Branching in Move is accomplished via if and else statements. There is not an else if statement. if (a) { debug::print(&0);\n} else { debug::print(&99);\n}; if is an expression. let value = if (true) { 8 } else {0}; // value set to 8 Move syntax for expressions and control flow shares similarities with Rust. Basic control flow constructs like if, while, and loop are present in Move as well. However, Move has a more limited set of expressions and control flow features compared to Rust.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » if","id":"26","title":"if"},"27":{"body":"Move supports while and loop looping constructs. while loops while condition is true. loop loops infinitely. There is no for loop, both while and loop are roughly equally used as replacements. // example of while loop\nwhile (i < 10) { Vector::push_back(&mut a, i); i = i + 1;\n};","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » while and loop","id":"27","title":"while and loop"},"28":{"body":"","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Types","id":"28","title":"Types"},"29":{"body":"Move has the primitive types boolean, u8, u64, u128, address, and signer. Move also supports hex- and byte-string literals. let byte_val = b\"hello, world!\"; // byte string\nlet hex_val = x\"48656C6C6F210A\"; // hex string Integers can be type cast with the as keyword. signer represents the sender of a transaction and is used for access control and authentication. signer can be converted to address with signer::address_of.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Primitives","id":"29","title":"Primitives"},"3":{"body":"The Move programming language was originally developed by Facebook's Libra project, now known as Diem, to facilitate the creation of smart contracts on its blockchain platform. The language takes its name from the underlying concept of moving resources rather than copying them, aligning with the principles of resource-oriented programming. Move was designed to address the unique challenges of blockchain development, such as security, efficiency, and scalability. Its origins can be traced back to the vision of creating a blockchain-based financial infrastructure that would be accessible to billions of people around the world. Today, Move continues to evolve as an open-source language, with a growing ecosystem and community supporting its development and adoption.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Libra/Diem","id":"3","title":"Libra/Diem"},"30":{"body":"Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust. copy: The copy ability allows for the type's value to be copied. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. Conditional abilities allow types to have different behaviors based on conditions.","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Abilities","id":"30","title":"Abilities"},"31":{"body":"Move supports generics for structs and functions. It's possible to achieve polymorphic behavior with generics and phantom types. Often you will want to nest generic structures inside of resources to achieve polymorphism. See the LiquidityPool generic structure below for an example. // polymorphic coin fee obtainment from liquidswap.\n/// Get fee for specific pool.\npublic fun get_fee(): u64 acquires LiquidityPool { assert!(coin_helper::is_sorted(), ERR_WRONG_PAIR_ORDERING); assert!(exists>(@liquidswap_pool_account), ERR_POOL_DOES_NOT_EXIST); let pool = borrow_global>(@liquidswap_pool_account); pool.fee\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Generic and behavior","id":"31","title":"Generic and behavior"},"32":{"body":"You can create a reference with & and &mut. You cannot use the mut keyword during assignment, .e.g., let mut value = ... will not compile. Global storage operators move_to, move_from, borrow_global_mut, borrow_global, and exists in Move enable reading from and writing to resources stored in the blockchain's global storage. The acquires keyword is used to specify which resources a function acquires ownership of a resource during execution. module collection::collection { use std::signer; struct Item has store, drop {} struct Collection has key, store { items: vector } public fun add_item(account: &signer) acquires Collection { let collection = borrow_global_mut(signer::address_of(account)); vector::push_back(&mut collection.items, Item {}); }\n} Move allows the creation of read-only references to resources, ensuring that functions cannot modify them. Here's a small code snippet demonstrating the use of Move syntax:","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Resources, References, and Mutation","id":"32","title":"Resources, References, and Mutation"},"33":{"body":"The public keyword in Move indicates that a function can be invoked from outside the current module. The native keyword is used to declare functions that are implemented in the blockchain runtime or in an external module. There are VM specific directives; in Movement we will address #[inline], #[view], #[test_only], and #[test].","breadcrumbs":"Week 1: Introduction to Move and Movement » Basic Move Syntax » Misc. syntax","id":"33","title":"Misc. syntax"},"34":{"body":"This section treats with the basic functionality of the module and build system for Move.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules and Build System","id":"34","title":"Modules and Build System"},"35":{"body":"A folder with a Move.toml and compilable move code is a package. Packages may define external dependencies, which can be local or store at a remote repository. All Move clients used herein will automatically fetch and compile dependencies. When using movement, we will also define package addresses in the Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Packages","id":"35","title":"Packages"},"36":{"body":"Move has two different types of program: modules and scripts . As a general rule, you should use scripts for short proofs of concept or as an entrypoint, see Script Based Design . You can define multiple scripts and modules in the same file.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Program types","id":"36","title":"Program types"},"37":{"body":"Modules are great for code reuse. They can be reference and linked. A module takes the following form. module
:: { ( | | | | )*\n} When attempting to use logic in a module, you must specify the member function that you wish to call.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Modules","id":"37","title":"Modules"},"38":{"body":"Scripts are a slightly easier to use alternative to modules. They take the following form. script { * * fun <[type parameters: constraint]*>([identifier: type]*) \n} Scripts can only have one function in their body.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Scripts","id":"38","title":"Scripts"},"39":{"body":"When developing for modules in move you will typically need to manually publish the module before being able to run. The exception to this rule is when using movement to run unit tests. movement move publish will handle both the building and publication of modules in your current working directory. If you simply want to build the module to inspect its bytecode run movement move build. Below is an example bash script for publishing and running a function in a module end-to-end using the Movement CLI. #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » Building","id":"39","title":"Building"},"4":{"body":"Resource-orientation is a fundamental concept in programming languages like Move that greatly benefits the blockchain ecosystem. By aligning with the principles of resource-oriented programming, the blockchain can enhance security, efficiency, and reliability of smart contracts.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Resource-orientation and the blockchain","id":"4","title":"Resource-orientation and the blockchain"},"40":{"body":"Within aptos_framework, you will be able to use named addresses. These will be replaced at compile time whether they are in the adrress position in a module ::my_module or marked with an @. In your Move.toml, you may specify these addresses as below. [addresses]\nstd = \"0x1\"\n = \"_\" You may then specify them when compiling using --=.","breadcrumbs":"Week 1: Introduction to Move and Movement » Module and Build System » named_addresses","id":"40","title":"named_addresses"},"41":{"body":"This section introduces a few basic smart contracts from this repository as a starting point for programming activites.","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » Debugging Basic Smart Contracts","id":"41","title":"Debugging Basic Smart Contracts"},"42":{"body":"Is a very simple program for MoveVM. You can find it at examples/move/hello_world. Learnings leveraged: Basic Move syntax Byte strings script { use std::debug; // use std::vector; fun debug_script(account : signer) { // Encode the \"Hello, world!\" as a byte string. let hello = b\"Hello, world!\"; // Print the byte string as a vector by passing a reference to the byte string. debug::print>(&hello); }\n} To run... move sandbox run sources/hello_world_script.move --signers 0xf\n> [debug] 0x48656c6c6f2c20776f726c6421 Double-check the output hex... echo 48656c6c6f2c20776f726c6421 | xxd -r - p","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 HelloWorld","id":"42","title":"💻 HelloWorld"},"43":{"body":"The obligatory Move program that computes the nth Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib. Learnings leveraged: Basic Move syntax Byte strings","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 Fib","id":"43","title":"💻 Fib"},"44":{"body":"From scratch implementation of a priority queue, a couple variations of a hash map, and a binary tree. This may be a useful reference point for building more challenging projects that require custom data strucures. You can find it at examples/move/data_structures. Learnings leveraged: Basic Move syntax Vectors BCS Move idioms","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 DataStructures","id":"44","title":"💻 DataStructures"},"45":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it at examples/move/resource_roulette. Learnings leveraged: Basic Move syntax Signer and address types Borrows Initialization Move idioms module resource_roulette::resource_roulette { use std::vector; use std::signer; const ENO_UNAUTHORIZED_ADDRESS : u64 = 0; // ResourceRoulette struct representing the contract state struct ResourceRoulette has key { bids: vector>, owner: address, state : u64 } struct RouletteWinnings has key { amount : u64 } // Initialization function for the ResourceRoulette contract public fun init(account: &signer) { assert!(signer::address_of(account) == @resource_roulette, ENO_UNAUTHORIZED_ADDRESS); let bids = vector::empty>(); let i = 0; while (i < 32) { vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; move_to(account, ResourceRoulette { bids, owner: @resource_roulette, state : 17203943403948 }); } // Initializes winnings for a signer public fun init_winnings(account: &signer) { move_to(account, RouletteWinnings { amount: 0, }); } // Bid function to allow signers to bid on a specific slot public fun bid(account : &signer, slot: u8) acquires ResourceRoulette { if (!exists(signer::address_of(account))) { init_winnings(account); }; let self = borrow_global_mut(@resource_roulette); roll_state(self); let bids_size = vector::length(&self.bids); assert!(slot < (bids_size as u8), 99); let slot_bids = vector::borrow_mut(&mut self.bids, (slot as u64)); vector::push_back(slot_bids, signer::address_of(account)); } public fun total_bid() : u64 { // Make this more complex to support actual bidding return 100 } // rolls state using xoroshiro prng fun roll_state(self :&mut ResourceRoulette) { let state = (self.state as u256); let x = state; let y = state >> 64; let t = x ^ y; state = ((x << 55) | (x >> 9)) + y + t; y = y ^ x; state = state + ((y << 14) | (y >> 50)) + x + t; state = state + t; state = state % (2^128 - 1); self.state = (state as u64); } public fun get_noise() : u64 { 1 } fun empty_bids(self : &mut ResourceRoulette){ // empty the slots let bids = vector::empty>(); let i = 0; while (i < 32) { vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; self.bids = bids; } // Roll function to select a pseudorandom slot and pay out all signers who selected that slot public fun spin() acquires ResourceRoulette, RouletteWinnings { let self = borrow_global_mut(@resource_roulette); // get the winning slot let bids_size = vector::length(&self.bids); roll_state(self); let winning_slot = (get_noise() * self.state % (bids_size as u64)) ; // pay out the winners let winners = vector::borrow(&self.bids, winning_slot); let num_winners = vector::length(winners); if (num_winners > 0){ let balance_per_winner = total_bid()/( num_winners as u64); let i = 0; while (i < num_winners) { let winner = vector::borrow(winners, i); let winnings = borrow_global_mut(*winner); winnings.amount = winnings.amount + balance_per_winner; i = i + 1; }; }; empty_bids(self); } // tests... }","breadcrumbs":"Week 1: Introduction to Move and Movement » Debugging Basic Move Programs » 💻 ResourceRoulette","id":"45","title":"💻 ResourceRoulette"},"46":{"body":"This section examines the standard library and framework that ships with Movement. Both are based on their Aptos namesakes. Disclaimer: there are many more useful modules in the standard library and framework. We will discuss some of them in this course and encourage you to explore them as you go.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » Movement Standard Library","id":"46","title":"Movement Standard Library"},"47":{"body":"Prints to a message to the console using a VM native func. The associated [debug] outputs are easiest to view when unit testing. module debug_demo::message { use std::string; use std::signer; use aptos_std::debug; struct MessageHolder has key { message: string::String, } public entry fun set_message(account: signer, message_bytes: vector) acquires MessageHolder { debug::print_stack_trace(); let message = string::utf8(message_bytes); let account_addr = signer::address_of(&account); if (!exists(account_addr)) { move_to(&account, MessageHolder { message, }); } else { let old_message_holder = borrow_global_mut(account_addr); old_message_holder.message = message; } } #[test(account = @0x1)] fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); debug::print
(&addr); set_message(account, b\"Hello, Blockchain\"); }\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::debug and aptos_std::debug","id":"47","title":"std::debug and aptos_std::debug"},"48":{"body":"A useful dynamically size collection with an aptos_std:: counterpart optimized for a large number of elements.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::vector and aptos_std::big_vector","id":"48","title":"std::vector and aptos_std::big_vector"},"49":{"body":"An associative array. fun run_table(account: signer) { let t = table::new(); let key: u64 = 100; let error_code: u64 = 1; assert!(!table::contains(&t, key), error_code); assert!(*table::borrow_with_default(&t, key, &12) == 12, error_code); add(&mut t, key, 1); assert!(*table::borrow_with_default(&t, key, &12) == 1, error_code); move_to(&account, TableHolder{ t });\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_std::table","id":"49","title":"aptos_std::table"},"5":{"body":"In resource-oriented programming, like Move, the stack model is employed to manage data ownership and control access. Take for example the following unsafe C program. #include \n#include \n#include void printAndFree(char* data) { printf(\"Data: %s\\n\", data); free(data); // Function takes ownership and frees the memory\n} int main() { char* value = (char*)malloc(strlen(\"Hello\") + 1); strcpy(value, \"Hello\"); printAndFree(value); // Pass ownership of 'value' to the function // Attempt to access the value after it has been freed printf(\"Data after freeing: %s\\n\", value); // Unsafe access! return 0;\n} In Move, this kind of unsafe access would not be possible because of strict ownership conditions. Each function owns the resources it creates and is responsible for their lifecycle. This ownership model ensures that resources are properly managed and prevents unauthorized access or modification, bolstering the security of blockchain-based applications.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Stack Model Programming and Function Ownership","id":"5","title":"Stack Model Programming and Function Ownership"},"50":{"body":"This module defines the Option type and its methods to represent and handle an optional value. The implementation is based on a vector. fun option_contains() { let none = option::none(); let some = option::some(5); let some_other = option::some(6); assert!(option::contains(&some, &5), 0); assert!(option::contains(&some_other, &6), 1); assert!(!option::contains(&none, &5), 2); assert!(!option::contains(&some_other, &5), 3);\n}","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » std::option","id":"50","title":"std::option"},"51":{"body":"A resource account is used to manage resources independent of an account managed by a user. This is is useful for building things like liquidity providers which we will discuss later in the course.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » aptos_framwork::resource_account","id":"51","title":"aptos_framwork::resource_account"},"52":{"body":"A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell, but only when cash out. Balances are tracked in a aptos_std::table. You can find it and instructions to run it examples/movement/resource_roulette.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 ResourceRoulette pt. 2","id":"52","title":"💻 ResourceRoulette pt. 2"},"53":{"body":"A tiny key value store for vector files. Implements store and load functionality using a aptos_framework::resource_account and a aptos_std::table. You can find it and instructions to run it examples/movement/mini_fs.","breadcrumbs":"Week 1: Introduction to Move and Movement » Movement Standard Library » 💻 MiniFs","id":"53","title":"💻 MiniFs"},"54":{"body":"This week treats with more advanced concepts in the Move language and focuses our Move development efforts on the Movement blockchain. This is also intended as an opportunity to practice and revisit concepts from Week 1.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Week 2: Advanced Move and Move for Movement","id":"54","title":"Week 2: Advanced Move and Move for Movement"},"55":{"body":"In this section we will examine Move's support for common type-level program models. Owing to the strictness of its programming model, many of the features found in modern programming languages are not available in Move. We conclude with a programming example, 💻 MoveNav , that implements a polymorphic navigation module using Move.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics, type constraints, and polymorphism","id":"55","title":"Generics, type constraints, and polymorphism"},"56":{"body":"Generics act as abstract stand-ins for concrete types and allow for type-independent code. A single function written with generics can be used for any type. In the Move language, generics can be applied to struct and function signatures. // source: https://move-language.github.io/move/generics.html\nfun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} struct Foo has copy, drop { x: T } let x = id(true); // ok!\nlet x = id(true); // error! true is not a u64 struct Foo has copy, drop { x: T } let foo = Foo { x: 0 }; // error! 0 is not a bool\nlet Foo
{ x } = foo; // error! bool is incompatible with address\nlet bar = Foo { x : true }; // ok!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Generics","id":"56","title":"Generics"},"57":{"body":"In Rust you can write code that composes traits to implement functionality similar to subtyping in other languages. trait Animal { fn make_sound(&self);\n} trait Fly { fn fly(&self);\n} trait Swim { fn swim(&self);\n} trait FlyingSwimmingAnimal: Animal + Fly + Swim { fn do_flying_swimming_stuff(&self) { self.make_sound(); self.fly(); self.swim(); }\n} struct Duck { name: String,\n} impl Animal for Duck { fn make_sound(&self) { println!(\"The duck {} says quack!\", self.name); }\n} impl Fly for Duck { fn fly(&self) { println!(\"The duck {} is flying.\", self.name); }\n} impl Swim for Duck { fn swim(&self) { println!(\"The duck {} is swimming.\", self.name); }\n} fn perform_actions(animal: &T) { animal.make_sound(); animal.fly(); animal.swim();\n} fn main() { let duck = Duck { name: String::from(\"Donald\"), }; perform_actions(&duck);\n} As part of the strictness of its programming model, Move does not support these constructs. Instead to achieve something similar to subtyping, it is often best to compose structs. That is, while you cannot establish an is relationship between types, you can establish a has relationship. This may be a more familiar model for those used to programming in C. module 0x42::Animal { use std::string; use std::debug; struct Animal { sound : string; name : string; } struct FlyingAnimal { flies : bool; speed : u8; animal : Animal; } struct Bird { flying_animal : FlyingAnimal; feather_description : string; } fun make_sound(animal : Animal){ debug::print(animal.sound); } fun bird_make_sound(bird : Bird){ make_sound(bird.flying_animal.animal); } } Importantly, however, you cannot compose types to provide bounds on generic functions. An equivalent of fn perform_actions(animal: &T) does not exist. Further below, we will discuss more advanced means of achieving similar subtyping and polymorphism. However, in most cases, you will be better off simply choosing a simpler programming model.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Move does not support subtyping or composable type constraints","id":"57","title":"Move does not support subtyping or composable type constraints"},"58":{"body":"copy: The copy ability allows for the type's value to be cloned. drop: The drop ability enables the necessary cleanup actions when the type goes out of scope. store: The store ability allows the type's value to be stored inside a struct in global storage. key: The key ability allows the type's value to be used as a unique identifier or index in the global storage of the Move blockchain. These abilites may be used to define type bounds for generic functions and structs. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} Importantly, in the publish_generic_box example above, the type T must also have the has and store abilities owing to Move's rules of ability composition: copy: All fields must have copy. drop: All fields must have drop. store: All fields must have store. key: All fields must have store.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The Four Type Abilities: copy, drop, store, and key","id":"58","title":"The Four Type Abilities: copy, drop, store, and key"},"59":{"body":"Storage polymorphism is the ability to index into global storage via a type parameter chosen at runtime. By leveraging storage polymorphism in combination with generics, Move developers can write generic algorithms, functions, and modules that can work with different resource types stored in the blockchain's storage. // source: https://move-language.github.io/move/global-storage-operators.html#global-storage-operators-with-generics struct Box has key { t: T } // Publish a Container storing a type T of the caller's choosing\nfun publish_generic_box(account: &signer, t: T) { move_to>(account, Box { t })\n} /// Publish a container storing a u64\nfun publish_instantiated_generic_box(account: &signer, t: u64) { move_to>(account, Box { t })\n} While not as flexible as general polymorphism found in some languages, Move's storage polymorphism can quickly compose complex and useful operations for the blockchain. The below is an example of function for adding liquidity from Movement's dex router. Under the hood, global storage polymorphism is being used to enable to the publication of generic coins. /// Add liquidity to pool `X`/`Y` with rationality checks.\n/// * `coin_x` - coin X to add as liquidity.\n/// * `min_coin_x_val` - minimum amount of coin X to add as liquidity.\n/// * `coin_y` - coin Y to add as liquidity.\n/// * `min_coin_y_val` - minimum amount of coin Y to add as liquidity.\n/// Returns remainders of coins X and Y, and LP coins: `(Coin, Coin, Coin>)`.\n///\n/// Note: X, Y generic coin parameters must be sorted.\npublic fun add_liquidity( coin_x: Coin, min_coin_x_val: u64, coin_y: Coin, min_coin_y_val: u64,\n): (Coin, Coin, Coin>) { assert!(coin_helper::is_sorted(), ERR_WRONG_COIN_ORDER); let coin_x_val = coin::value(&coin_x); let coin_y_val = coin::value(&coin_y); assert!(coin_x_val >= min_coin_x_val, ERR_INSUFFICIENT_X_AMOUNT); assert!(coin_y_val >= min_coin_y_val, ERR_INSUFFICIENT_Y_AMOUNT); let (optimal_x, optimal_y) = calc_optimal_coin_values( coin_x_val, coin_y_val, min_coin_x_val, min_coin_y_val ); let coin_x_opt = coin::extract(&mut coin_x, optimal_x); let coin_y_opt = coin::extract(&mut coin_y, optimal_y); let lp_coins = liquidity_pool::mint(coin_x_opt, coin_y_opt); (coin_x, coin_y, lp_coins)\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Storage polymorphism","id":"59","title":"Storage polymorphism"},"6":{"body":"Resource-oriented programming languages like Move implement access restrictions at all levels of code execution. From the top-level contract to individual functions, access to resources is strictly controlled. This granular access control minimizes the risk of unauthorized operations and ensures that only authorized parties can interact with specific resources, promoting secure and auditable transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Access Restriction All the Way Down","id":"6","title":"Access Restriction All the Way Down"},"60":{"body":"In order to enforce type constraints at compile-time, unused type parameters can be marked as phantom type parameters. Arguments to phantom type parameters won't be considered when determining the abilities of the generic type. Thus, this eliminates the need for spurious ability annotations. Generics, along with storage polymorphism and phantom type parameters, offer flexibility, code reuse, and type safety. These features make it easier to create modular and reusable code components for safe contracts in the Move language. For instance, generics can be used to define generic data structures such as lists, maps, or queues that can store and manipulate values of any type. In addition, generics enable the creation of templatized algorithms which can operate on different types of data. // source: https://move-language.github.io/move/generics.html?highlight=phantom%20types#unused-type-parameters\nmodule 0x2::m { // Currency Specifiers struct Currency1 {} struct Currency2 {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_concrete(value: u64): Coin { Coin { value } }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » Unused and phantom types","id":"60","title":"Unused and phantom types"},"61":{"body":"💻 MoveNav implements Dijkstra's algorithm for navigating over a graph with different navigation types in move. We'll use a simple approach to domain modeling outlined below. // redacted version of examples/movement/MoveNav\nmodule 0x42::MoveNav { use std::vector; use std::option; use std::debug; use std::string; struct Graph { nodes: vector, edges: vector, } struct Vector3 { x: u8, y: u8, z: u8, } struct Edge { source: u8, target: u8, weight: u8, } struct Navigation { graph: Graph, navigation_type: NavigationType, } struct NavigationType { name: string::String, speed: u8, } fun navigate(nav: Navigation, start: Vector3, end: Vector3): option::Option { debug::print(\"Navigating from \", start, \" to \", end); let nav_type = &nav.navigation_type; if nav_type.name == \"Walk\" { debug::print(\"Walking at speed \", nav_type.speed); // Perform walking navigation logic return option::none() } if nav_type.name == \"Run\" { debug::print(\"Running at speed \", nav_type.speed); // Perform running navigation logic return option::none() } if nav_type.name == \"Fly\" { debug::print(\"Flying at speed \", nav_type.speed); // Perform flying navigation logic return option::none() } else { debug::print(\"Unsupported navigation type\"); return option::none() } } fun set_graph(nav: &mut Navigation, graph: Graph) { nav.graph = graph; } fun set_navigation_type(nav: &mut Navigation, nav_type: NavigationType) { nav.navigation_type = nav_type; }\n} To dive into the project, please clone this book's repo, and navigate to examples/movement/MoveNav.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » 💻 MoveNav","id":"61","title":"💻 MoveNav"},"62":{"body":"The MSL specification provides for more advanced type-level constructs. For ambitious developers, these may be powerful contribution objectives!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Type Constraints, Polymorphism, and Generics » The future of Move type programming","id":"62","title":"The future of Move type programming"},"63":{"body":"This section examines the safety features of Move in greater and more theoretical detail. There are no programming exercises designed for this section. It is primarily intended to motivate the usage of Move language in the context of blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Safety","id":"63","title":"Safety"},"64":{"body":"The Move Language was inspired by linear logic, a formal system of logic that was developed by Jean-Yves Girard in 1987. In linear logic, formulas were regarded as resources which could only be used once. Similarly, in the Move language, resources can only be moved between storage locations, never copied or dropped.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Linear logic","id":"64","title":"Linear logic"},"65":{"body":"Move's type system enables special safety guarantees for resources. It ensures that move resources can not be duplicated, reused, or implicitly discarded. Attempts to duplicate, reuse, or implicitly discard a resource will result in a bytecode verification error. Notwithstanding these unique safeguards, resources in the Move language possess the characteristics of regular program values. They can be stored in data structures, passed as arguments to procedures, and utilized in similar ways. module 0x42::LinearLogicExample { use std::vector; use std::debug; struct Token has drop { value: u8, } fun use_token(token: Token) { debug::print>(\"Using token.\"); // Perform operations with the token... } public fun main() { let token: Token; token = Token { value: 10 }; debug::print>(b\"Before use:\"); debug::print(token.value); use_token(token); debug::print(token.value); // Attempting to access `token` here would result in a compile-time error }\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » Move type system","id":"65","title":"Move type system"},"66":{"body":"The Move Prover is a formal verification tool specifically designed for the Move programming language. The Move Prover performs static analysis of Move programs, exploring all possible execution paths and applying various verification techniques. It can reason about program behaviors, ownership and borrowing rules, resource lifecycles, and other aspects of Move's type system and semantics. By leveraging the Move Prover, developers can gain increased confidence in the correctness and security of their Move smart contracts. This tool helps identify potential issues before deployment, reducing the risk of vulnerabilities, ensuring adherence to best practices, and promoting the development of robust and reliable blockchain applications.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Safety » The Move Prover","id":"66","title":"The Move Prover"},"67":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Introduction to Smart Contracts","id":"67","title":"Introduction to Smart Contracts"},"68":{"body":"Long before blockchain technology, American cryptographer and programmer, Nick Szabo, proposed the idea of the smart contracts in 1996. At the time of his proposal, the distributed ledger did not exist, and thus his idea could be not built upon. The first cryptocurrency, Bitcoin, was created in 2008, which helped to motivate the development of smart contracts. In 2013, Ethereum became the first platform to host smart contracts. Now, there are plenty of platforms that are used to bring Szabo's idea to life. When it comes to implementing smart contracts, resource orientation plays a crucial role in ensuring security, efficiency, and reliability. Resource-oriented programming languages, such as Move, have emerged as a powerful tool for developing smart contracts on blockchain platforms. Move, specifically designed for the Libra blockchain, places a strong emphasis on resource-oriented programming principles, which have proven to be highly beneficial in the context of smart contracts. Here's why resource orientation is important in languages like Move: Security and Safety: Smart contracts often handle valuable digital assets, and any vulnerability or flaw in the contract's code can lead to disastrous consequences, including financial losses. Resource-oriented programming in Move enforces strict ownership and borrowing rules, ensuring that resources are properly managed and protected. The language's type system guarantees the absence of common vulnerabilities like reentrancy and enables static verification of contracts, minimizing the risk of critical bugs and making smart contracts more secure. Efficient Resource Management: In traditional programming languages, objects or data structures are often copied or cloned when passed between functions or contracts. This can lead to unnecessary memory consumption and performance bottlenecks. Resource-oriented programming in Move takes a different approach. Resources are moved between functions or contracts, rather than being copied, ensuring efficient use of memory and reducing the risk of unintended side effects. Move's ownership model allows for fine-grained control over resource lifecycles, enabling optimized resource management within smart contracts. Immutable and Transparent State: Blockchain technology inherently involves a distributed and immutable ledger that maintains the state of smart contracts. Resource-oriented programming aligns well with these characteristics, as Move enforces immutability for resources. Once a resource is created, its state cannot be modified directly, ensuring the integrity and consistency of the contract's data. This immutability also contributes to the transparency of the blockchain, as the entire history of resource states can be audited and verified by any participant. Concurrent and Parallel Execution: In decentralized blockchain networks, multiple transactions can be executed concurrently, requiring smart contracts to handle concurrent access to shared resources. Resource-oriented programming provides a solid foundation for handling concurrent execution. Move's borrowing mechanism allows for controlled and safe concurrent access to resources, preventing data races and ensuring deterministic execution. This capability enables scalable and efficient execution of smart contracts in a distributed environment. Upgradeability and Evolution: Smart contracts often need to evolve and adapt over time to incorporate new features, fix bugs, or address changing business requirements. Resource-oriented programming facilitates upgradability by decoupling the contract's data from its logic. By defining the behavior of resources separately from the contract's code, Move allows for smooth migration and upgrade of contracts while preserving the integrity of existing data and ensuring backward compatibility. Resource orientation in languages like Move plays a pivotal role in the development of secure, efficient, and reliable smart contracts. By enforcing ownership and borrowing rules, enabling efficient resource management, ensuring immutability and transparency of state, supporting concurrent execution, and facilitating upgradability, Move empowers developers to build robust and future-proof smart contracts on the blockchain.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Origins of smart contracts","id":"68","title":"Origins of smart contracts"},"69":{"body":"We've implemented a multi-contract fibonacci number computation in Solidity, Anchor, and Movement to illustrate the benefits of the move language and Movement. We encourage to run and compare the source for each. We've included devcontainers for Solidity and Anchor in the associated repo.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Comparison: 💻 MulticontractFib","id":"69","title":"Comparison: 💻 MulticontractFib"},"7":{"body":"Type linearity is a crucial aspect of resource-oriented programming that enforces the linear use of resources. In Move, resources have linear types, meaning they can only be consumed or moved, not duplicated. This feature prevents resource duplication, reduces memory consumption, and eliminates the risk of double-spending, ensuring the integrity and accuracy of transactions on the blockchain.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Type Linearity and Ownership","id":"7","title":"Type Linearity and Ownership"},"70":{"body":"Solidity is high-level, object-oriented programming language used to implement smart contracts. It is the primary programming language used on the Ethereum blockchain. To work with the Solidity implementation, use the solidity devcontainer and work from the examples/solidity/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Solidity","id":"70","title":"Solidity"},"71":{"body":"Anchor is Solana's Sealevel runtime framework. It provides several developer tools for writing smart contracts in order to simplify the process and help developers to focus on their product. To work with the Anchor implementation, use the anchor devcontainer and work from the examples/anchor/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Anchor","id":"71","title":"Anchor"},"72":{"body":"This is us! To work with the Anchor implementation, use the movement devcontainer and work from the examples/movement/multicontract_fib directory.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Introduction to Smart Contracts » Movement","id":"72","title":"Movement"},"73":{"body":"This section examines testing strategies for Move smart contracts on Movement. We will cover both automated and manual strategies for testing functionality.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing","id":"73","title":"Testing"},"74":{"body":"movement init --network testnet When building and testing an application, you will want to work against either the Movement testnet or a local network. The movement devcontainer is equipped with the movement CLI and uses docker-compose to start a local network; both options are available without additional setup when working with the devcontainer. When beginning a project, run movement init and specify either testnet or local. The first profile you create will be called default. To create a new profile run movement init --profile . You can then specify which profile you would like to use in various commands by --profile , e.g., move run --profile default .... You can inspect the details of all of your profiles at .movement/config.yaml in your working directory. # config.yaml\n---\nprofiles: default: private_key: \"0x23978a9c5a8c9291c3cb0283f5c4eee243f7ae81d62b3d3243aa06ac0fcde2cf\" public_key: \"0xf6ad6834565bda0f3fa8a093311f1a1308855773d2108cd04dd770da9c078ecd\" account: 29f06cb1f4139484e8c3dcd9f915ad39acb2aee9a8e8064ee48cfc255ecf10ca rest_url: \"https://fullnode.devnet.aptoslabs.com/\" faucet_url: \"https://faucet.devnet.aptoslabs.com/\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Movement profile configuration","id":"74","title":"Movement profile configuration"},"75":{"body":"Movement's CLI movement provides an aptos-like interface for building and testing Move smart contracts. The built-in testing functionality is best suited for unit testing. You can define tests in the same module or separately. // hello_blockchain.move\nmodule hello_blockchain::message { use std::error; use std::signer; use std::string; use aptos_framework::account; use aptos_framework::event; // ... #[test(account = @0x1)] public entry fun sender_can_set_message(account: signer) acquires MessageHolder { let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( get_message(addr) == string::utf8(b\"Hello, Blockchain\"), ENO_MESSAGE ); }\n} // hello_blockchain_test.move\n#[test_only]\nmodule hello_blockchain::message_tests { use std::signer; use std::unit_test; use std::vector; use std::string; use hello_blockchain::message; fun get_account(): signer { vector::pop_back(&mut unit_test::create_signers_for_testing(1)) } #[test] public entry fun sender_can_set_message() { let account = get_account(); let addr = signer::address_of(&account); aptos_framework::account::create_account_for_test(addr); message::set_message(account, string::utf8(b\"Hello, Blockchain\")); assert!( message::get_message(addr) == string::utf8(b\"Hello, Blockchain\"), 0 ); }\n} You can then run tests for the package containing modules from the movement CLI. movement move test --named-addresses hello_blockchain=default For advanced use of movement for automated testing, such as coverage, see the movement CLI documentation .","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Automated testing","id":"75","title":"Automated testing"},"76":{"body":"Often, automated unit testing will be insufficient to determine that your smart contracts are ready for production. You will want to apply a set of end-to-end strategies to ensure smart contract quality. At the moment, all of these strategies are manual; however, automation can be built on-top of them. Contribution {: .contributor-block} Help us develop better tools for automated e2e and integration testing.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Manual testing","id":"76","title":"Manual testing"},"77":{"body":"There three key instructions for manual testing using movement: movement move publish: publishes modules and scripts to the Movement blockchain. movement move run: runs a module or script. movement account list: lists resources values. When testing manually, you will typically adopt a flow of publish->run->list. In the examples provided with this book's repository, you will commonly see bash scripts for running and testing Movement smart contract that orchestrate these three commands. The following is an example from our hello_blockchain contract: #!/bin/bash -e # Function to echo text as cyan with emoji\nfunction begin() { echo -e \"🔹 \\033[36m$1\\033[0m\"\n} # Function to echo text as green with increased font-weight and emoji\nfunction finish() { echo -e \"✅ \\033[1;32m$1\\033[0m\"\n} begin \"Funding account for hello_blockchain deployment and call...\"\nmovement account fund-with-faucet --account default\nfinish \"Funded account for hello_blockchain deployment and call!\" begin \"Publishing hello_blockchain module...\"\necho \"y\" | movement move publish --named-addresses hello_blockchain=default\nfinish \"Published hello_blockchain module!\" begin \"Setting hello_blockchain message to 'hello!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:hello!\nfinish \"Set hello_blockchain message to 'hello'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\" begin \"Setting hello_blockchain message to 'goodbye!'...\"\necho \"y\" | movement move run --function-id default::message::set_message --args string:goodbye!\nfinish \"Set hello_blockchain message to 'goodbye'!\" begin \"Querying resources for account...\"\nmovement account list --query resources --account default\nfinish \"Queryed resourced for account!\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » With movement","id":"77","title":"With movement"},"78":{"body":"In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities. Share Share your semi-automated workflows with us!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Semi-automation","id":"78","title":"Semi-automation"},"79":{"body":"Movement provides several directives for testing which are important to understand.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Testing directives","id":"79","title":"Testing directives"},"8":{"body":"Double-spending is a significant concern in decentralized systems where digital assets are involved. Resource-oriented programming, like Move, mitigates the risk of double-spending by enforcing strict ownership and borrowing rules. Resources can only be moved or consumed once, preventing malicious actors from creating multiple transactions using the same resource and effectively eliminating the possibility of double-spending attacks.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Double-Spending","id":"8","title":"Double-Spending"},"80":{"body":"Marks a test function. Can be provided with arguments. When testing procedures that require signers, you will need set their values in the directive. Take the example below from 💻 ResourceRoulette #[test(account = @resource_roulette, bidder_one = @0x3)]\n#[expected_failure(abort_code = FLAG_WINNER)]\npublic fun test_wins(account : &signer, bidder_one : &signer) acquires Here our test expects both resource account, i.e., resource_roulette, and a bidder signer, i.e., bidder_one. We will discuss how these are used below.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[test]","id":"80","title":"#[test]"},"81":{"body":"Test only is used for defining symbols that will only be compiled when testing. It can be useful for creating mocks and stubs, test boundaries and more.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[test_only]","id":"81","title":"#[test_only]"},"82":{"body":"Allows you to check if a routine aborts as expected, i.e., matching a certain error code. In addition to asserting intended failures, you can use this behavior to define more complex tests that are based on boundary conditions being crossed. The example below from 💻 Resource Roulette uses this pattern to test whether winners emerge from the pseudorandom spinner. #[test_only]\nconst BOUNDARY_WINNER : u64 = 1; // Under the current state rolling implementation this will work\n// More robust testing would calculate system dynamics\n#[test(account = @resource_roulette, bidder_one = @0x3)]\n#[expected_failure(abort_code = FLAG_WINNER)]\npublic fun test_wins(account : &signer, bidder_one : &signer) acquires ResourceRoulette, RouletteWinnings { init(account); let i : u64 = 0; while (i < 1_000) { bid(bidder_one, 7); spin(); let winnings = borrow_global(signer::address_of(bidder_one)); if (winnings.amount > 0) { abort BOUNDARY_WINNER }; i = i + 1; }; }","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » #[expect_failure]","id":"82","title":"#[expect_failure]"},"83":{"body":"In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks, stubs, and state-based simulation","id":"83","title":"Mocks, stubs, and state-based simulation"},"84":{"body":"Mocks and stubs are both techniques used to simulate or replace certain components of a system being tested. A mock is a fake implementation of a method or an object, meant to simulate its real behavior. Stubs, on the other hand, are simplified implementations that do not imitate the real behavior. Instead, stubs produce a predefined response to a specific method call or input. Thus, mocks verify the behavior of code and stubs verify the state of the code. Some of the modules in the standard library and framework will be suitable for mocking. The example below uses a resource account function to mock a specialized publishing process. A good strong understanding of the standard library can result in much cleaner solutions to mocking problems. #[test_only]\npublic entry fun set_up_test(origin_account: &signer, resource_account: &signer) { use std::vector; account::create_account_for_test(signer::address_of(origin_account)); // create a resource account from the origin account, mocking the module publishing process resource_account::create_resource_account(origin_account, vector::empty(), vector::empty()); init_module(resource_account);\n}","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » Mocks and stubs","id":"84","title":"Mocks and stubs"},"85":{"body":"State-based simulation is a testing technique that focuses on verifying a program based the correctness of its state transitions. First, one must identify and define the states that the program can be in. Next, the events or actions that trigger a transition between states must be defined. Using this information, proper test cases should be generated to explore different state transitions and scenarios.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » State-based simulation","id":"85","title":"State-based simulation"},"86":{"body":"Beyond the test and test_only directives, Movement does not not provide any additional ergonomics for mocking, stubbing, or state-based simulation. However, opting for a common environment module may be suitable for more complex cases. The example below uses storage polymorphism to implement a common environment store. address 0x42::Environment { // Unused type for global storage differentiation struct VariableA {} struct VariableB {} // A generic variable type that can be instantiated with different types struct VariableStore has store { value: V, } // Set the value of a variable public fun set_variable(value: V) acquires VariableStore { move_to>(account, VariableSore { value }) } // Get the value of a variable public fun get_variable(): V acquires VariableStore { borrow_global>(addr).value }\n} When setting up your tests, you would then want to run something like the below. You'll likely want to simply create a type bridge in the module above to enable external sets from the CLI. #!/bin/bash -e # set environment\nbegin \"Setting environment to slow...\"\necho \"y\" | movement move run --function-id default::message::set_slow_variable --args string:slow\nfinish \"Set environment to slow!\" Contribution Help us develop mocking and stubbing tools for Movement.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Testing » For movement","id":"86","title":"For movement"},"87":{"body":"Ville Sundell has already provided an expert overview of useful design patterns in Move. As this book improves, we may include some of our own here. However, for now, we defer to Ville.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Design Patterns » Design Patterns","id":"87","title":"Design Patterns"},"88":{"body":"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Smart Contracts development and staging","id":"88","title":"Smart Contracts development and staging"},"89":{"body":"When building smart contracts for movement you can use both the move client and movement itself.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Development","id":"89","title":"Development"},"9":{"body":"Virtual machines play a crucial role in the blockchain ecosystem, particularly in executing and enforcing the logic of smart contracts. They ensure that all nodes on the blockchain network run the same logic, enabling verification and consensus among participants.","breadcrumbs":"Week 1: Introduction to Move and Movement » Introduction to Move » Virtual machines and the blockchain","id":"9","title":"Virtual machines and the blockchain"},"90":{"body":"The move CLI is a suitable tool for early and primitive development. You will not have access to the same onchain resources as when working with the movement CLI, such as access to our DEX. However, you will be able to use the move sandbox to build and run contracts. To make sure you are building with out standard library, include the following in your Move.toml. [package]\nname = \"hello_world\"\nversion = \"0.0.0\" [dependencies]\n# MoveNursery = { git = \"https://github.com/move-language/move.git\", subdir = \"language/move-stdlib/nursery\", rev = \"main\" }\nMovementFramework = { git = \"https://github.com/movemntdev/movement-subnet.git\", subdir = \"vm/aptos-vm/aptos-move/aptos-framework\", rev = \"main\" } [addresses]\nstd = \"0x1\"\nhello_blockchain = \"_\"","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » move","id":"90","title":"move"},"91":{"body":"The movement CLI provides an aptos-like interface for running Move language scripts and modules. For more details see the movement CLI docs. When using movement in its default configuration, you will test and run contracts against our testnet. This is ideal for most Movement development.","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » movement","id":"91","title":"movement"},"92":{"body":"The best way to publicly stage smart contracts for Movement is simply to us a movement CLI. If you are interested in a more private staging environment, you may use the movement CLI with the provided movement devcontainer to compose and stage against a local network. Contribution {: .contributor-block} Help us develop better tools for movement staging!","breadcrumbs":"Week 2: Advanced Move and Move for Movement » Smart Contracts Development and Staging » Staging","id":"92","title":"Staging"},"93":{"body":"M1 is Movement's first L1. This week is be all about building applications, particular DeFi applications, with Movement.","breadcrumbs":"Week 3: M1 and DeFi Applications » Week 3: M1 and DeFi Applications","id":"93","title":"Week 3: M1 and DeFi Applications"},"94":{"body":"At the time of writing, only the M1 testnet is available. To set up for deployment you only need to make sure you have a testnet profile configured. movement init --network testnet You may then use the movement CLI to publish your package. movement move publish --named-addresses hello_blockchain=default We encourage however to take a look at aptos_framework::resource_account and aptos_framework::resource_group for more advanced publication options.","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » Deploying on M1","id":"94","title":"Deploying on M1"},"95":{"body":"We encourage you to checkout examples/movement/multicontract_fib for an easy to inspect deployment. Once you've deployed, simply run the command below to check out the on-chain resources. movement account list --query resources --account default","breadcrumbs":"Week 3: M1 and DeFi Applications » Deploying on M1 » 💻 MulticontractFib","id":"95","title":"💻 MulticontractFib"},"96":{"body":"This section provides a high-level overview of common blockchain concerns and points to features of Movement or modules from the Movement standard library that can be used to help.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Security","id":"96","title":"Security"},"97":{"body":"When working with M1 you will be able benefit from Avalanche's adaptive security and Move's strict programming model to avoid many of the vulnerabilities you would commonly encounter in smart contract development. You should, of course, remain aware of the vectors of attack.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » M1","id":"97","title":"M1"},"98":{"body":"","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Attack Surface","id":"98","title":"Attack Surface"},"99":{"body":"Network layer The network layer of a blockchain application is susceptible to various attacks, such as distributed denial-of-service (DDoS) attacks, eclipse attacks, and Sybil attacks. These attacks can disrupt the network's functionality and compromise its security. Consensus The consensus mechanism used in a blockchain application can be targeted by attackers through attacks like 51% attacks, where they gain majority control over the network's computing power and manipulate transactions or block validation. Thankfully, Avalanche consensus--which underpins movement--is designed to resist various attacks, including sybil attacks, distributed denial-of-service (DDoS) attacks, and collusion attacks. Its probabilistic nature ensures that the consensus outcome converges to the desired state, even when the network is under attack. Blockchain protocol: The underlying blockchain protocol may have vulnerabilities that can be exploited by attackers. Weaknesses in the protocol's cryptographic algorithms, consensus algorithms, or validation mechanisms can lead to security breaches.","breadcrumbs":"Week 3: M1 and DeFi Applications » Security » Blockchain","id":"99","title":"Blockchain"}},"length":156,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951}},"x":{"1":{"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"144":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"65":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"3":{"9":{"4":{"3":{"4":{"0":{"3":{"9":{"4":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"8":{"7":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":3.0},"132":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"^":{"1":{"2":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"138":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"1":{"df":1,"docs":{"99":{"tf":1.0}}},"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":1,"docs":{"82":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":1,"docs":{"109":{"tf":1.0}}},"9":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"100":{"tf":1.0},"30":{"tf":2.8284271247461903},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"107":{"tf":1.0},"58":{"tf":1.0},"86":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":3.1622776601683795},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":3.605551275463989},"80":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0}}}},"v":{"df":8,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"109":{"tf":1.0},"59":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"r":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.7320508075688772},"147":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"45":{"tf":2.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"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":8,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"149":{"tf":1.0},"60":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":2.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"z":{"df":2,"docs":{"147":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"46":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"49":{"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":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":11,"docs":{"111":{"tf":2.23606797749979},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"137":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.7416573867739413}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"118":{"tf":1.4142135623730951},"132":{"tf":1.0},"29":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"17":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"14":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"107":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"r":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":2.0},"134":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":9,"docs":{"1":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":1,"docs":{"119":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"39":{"tf":2.23606797749979},"74":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"147":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"146":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"45":{"tf":3.3166247903554},"52":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.0}}},"df":51,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":4,"docs":{"25":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"61":{"tf":1.0},"77":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"126":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"126":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"144":{"tf":1.4142135623730951}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"114":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"114":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":2.0},"44":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"68":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"150":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"h":{"df":1,"docs":{"52":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"30":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":2.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"147":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"126":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"59":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.23606797749979},"21":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"132":{"tf":3.1622776601683795},"31":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":2.0},"147":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"32":{"tf":1.7320508075688772},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.4142135623730951},"55":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"151":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"155":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}},"s":{"df":5,"docs":{"130":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"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":2,"docs":{"147":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"151":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":3,"docs":{"119":{"tf":1.0},"45":{"tf":1.0},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"147":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"109":{"tf":2.0},"142":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"131":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"68":{"tf":2.0}}},"df":37,"docs":{"10":{"tf":2.0},"100":{"tf":3.3166247903554},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":4.47213595499958},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":2.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":3.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"64":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.0},"73":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"154":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"132":{"tf":1.0},"60":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"101":{"tf":1.7320508075688772},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"t":{"a":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"116":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":2.23606797749979}},"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"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":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"47":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"91":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"i":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"93":{"tf":1.4142135623730951}},"n":{"df":14,"docs":{"119":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"108":{"tf":1.0},"149":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":2,"docs":{"152":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":38,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":2.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"59":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"68":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"91":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":2.0}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"2":{"df":1,"docs":{"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"120":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"39":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":2.23606797749979},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"86":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"t":{"df":3,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"147":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"71":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"126":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"72":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":2,"docs":{"107":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"130":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"143":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"130":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"122":{"tf":1.0},"132":{"tf":1.0}},"i":{"df":7,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"138":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"140":{"tf":1.0}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"57":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"57":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":4,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"131":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":8,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"147":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"45":{"tf":1.7320508075688772},"5":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"100":{"tf":1.0},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"df":26,"docs":{"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":3.1622776601683795},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"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":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"121":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"19":{"tf":1.0},"31":{"tf":2.23606797749979},"36":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178},"60":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":2,"docs":{"125":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":2.0},"119":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"150":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":7,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"77":{"tf":3.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"151":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"90":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"113":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.7320508075688772},"147":{"tf":1.0},"85":{"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":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"109":{"tf":1.0},"74":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"57":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"r":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"144":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"75":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"115":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"41":{"tf":1.0}},"t":{"df":4,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"154":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":11,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"77":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"116":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"y":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"131":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"109":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.7320508075688772},"7":{"tf":2.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":3,"docs":{"106":{"tf":1.0},"140":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":2.449489742783178},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"113":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":2.0},"130":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"74":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"37":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":2.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"1":{"df":4,"docs":{"121":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"139":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"60":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"147":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"134":{"tf":1.4142135623730951},"21":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":1.7320508075688772},"30":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"150":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":2.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"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":{"151":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":1,"docs":{"142":{"tf":1.0}},"f":{"df":1,"docs":{"53":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":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":{"126":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.8284271247461903},"86":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"55":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.6457513110645907},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"90":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":67,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"59":{"tf":1.0},"75":{"tf":1.0},"93":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":2.23606797749979},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":2.6457513110645907},"75":{"tf":2.23606797749979},"77":{"tf":3.605551275463989},"79":{"tf":1.0},"86":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{}},"v":{"df":0,"docs":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":3,"docs":{"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"119":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"103":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":2.0},"152":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"w":{"df":6,"docs":{"109":{"tf":2.0},"143":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":2,"docs":{"115":{"tf":1.0},"50":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"147":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"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":{"c":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"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":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"50":{"tf":1.0}}},"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.23606797749979},"142":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":3.1622776601683795},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"149":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"55":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":2,"docs":{"111":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.0},"45":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"35":{"tf":2.23606797749979},"75":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"45":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0}}}},"g":{"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"17":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"60":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"31":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"66":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"116":{"tf":1.0},"68":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"147":{"tf":1.0},"44":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"151":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"84":{"tf":1.0}},"t":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":3.3166247903554},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":2.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":2,"docs":{"122":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":16,"docs":{"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"150":{"tf":2.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"110":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"135":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"68":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":2,"docs":{"116":{"tf":1.0},"66":{"tf":2.0}}}},"i":{"d":{"df":37,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":19,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"126":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"100":{"tf":1.0},"109":{"tf":1.0},"39":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"144":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"d":{"df":2,"docs":{"138":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"127":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"147":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.0},"137":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":3,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"106":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"21":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"29":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"147":{"tf":4.358898943540674},"44":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"23":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":29,"docs":{"100":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":4.69041575982343},"7":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":3.0},"52":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"114":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.0},"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.4142135623730951},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"126":{"tf":1.0},"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"125":{"tf":1.0},"21":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.0},"86":{"tf":2.449489742783178},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":2.23606797749979},"56":{"tf":1.0}}}}}},"df":1,"docs":{"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"109":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"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":{"110":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.7320508075688772},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"56":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":2.6457513110645907}}},"w":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"10":{"tf":2.0},"100":{"tf":3.0},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":4.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"147":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"v":{"df":1,"docs":{"149":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"57":{"tf":1.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"114":{"tf":1.0},"147":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"46":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"109":{"tf":1.0},"112":{"tf":2.0},"45":{"tf":3.872983346207417},"68":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"155":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"103":{"tf":1.0},"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.0},"64":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"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":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":1.0},"57":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":2.0},"132":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"65":{"tf":1.0},"86":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"145":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"143":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":22,"docs":{"100":{"tf":2.23606797749979},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"149":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":6,"docs":{"45":{"tf":2.0},"49":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"33":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":21,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.0},"143":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"115":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"60":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":2.0}}}}},"l":{"df":1,"docs":{"118":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":3.1622776601683795},"65":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"114":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"76":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"115":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":24,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"86":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":3.0},"49":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"105":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772},"79":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"100":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"120":{"tf":1.0}}}}},"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":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"126":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"100":{"tf":2.0},"114":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":77,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"56":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.0},"65":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"b":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"109":{"tf":2.0},"42":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"47":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"132":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":2.449489742783178},"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"61":{"tf":1.0}}}},"r":{"df":4,"docs":{"116":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0}}},"v":{"df":4,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"145":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"146":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"40":{"tf":1.0},"82":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"142":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903},"59":{"tf":2.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":8,"docs":{"109":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795},"61":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}},"v":{"df":4,"docs":{"149":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}}},"z":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"[":{"1":{";":{"3":{"2":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"3":{"6":{"df":0,"docs":{},"m":{"$":{"1":{"\\":{"0":{"3":{"3":{"[":{"0":{"df":0,"docs":{},"m":{"df":2,"docs":{"39":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951}},"x":{"1":{"df":6,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"2":{"3":{"9":{"7":{"8":{"a":{"9":{"c":{"5":{"a":{"8":{"c":{"9":{"2":{"9":{"1":{"c":{"3":{"c":{"b":{"0":{"2":{"8":{"3":{"df":0,"docs":{},"f":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"4":{"3":{"df":0,"docs":{},"f":{"7":{"a":{"df":0,"docs":{},"e":{"8":{"1":{"d":{"6":{"2":{"b":{"3":{"d":{"3":{"2":{"4":{"3":{"a":{"a":{"0":{"6":{"a":{"c":{"0":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"2":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"4":{"2":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"6":{"a":{"d":{"6":{"8":{"3":{"4":{"5":{"6":{"5":{"b":{"d":{"a":{"0":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"0":{"9":{"3":{"3":{"1":{"1":{"df":0,"docs":{},"f":{"1":{"a":{"1":{"3":{"0":{"8":{"8":{"5":{"5":{"7":{"7":{"3":{"d":{"2":{"1":{"0":{"8":{"c":{"d":{"0":{"4":{"d":{"d":{"7":{"7":{"0":{"d":{"a":{"9":{"c":{"0":{"7":{"8":{"df":0,"docs":{},"e":{"c":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"42":{"tf":1.0}}}}},"1":{"0":{"0":{"df":3,"docs":{"144":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"65":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"0":{"3":{"9":{"4":{"3":{"4":{"0":{"3":{"9":{"4":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"8":{"7":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":3.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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.4142135623730951},"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":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"0":{"0":{"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"f":{"0":{"6":{"c":{"b":{"1":{"df":0,"docs":{},"f":{"4":{"1":{"3":{"9":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"8":{"c":{"3":{"d":{"c":{"d":{"9":{"df":0,"docs":{},"f":{"9":{"1":{"5":{"a":{"d":{"3":{"9":{"a":{"c":{"b":{"2":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"a":{"8":{"df":0,"docs":{},"e":{"8":{"0":{"6":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"8":{"c":{"df":0,"docs":{},"f":{"c":{"2":{"5":{"5":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"1":{"0":{"c":{"a":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"^":{"1":{"2":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.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},"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":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":47,"docs":{"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.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"50":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"c":{"2":{"0":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"138":{"tf":2.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}}},"5":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"1":{"df":1,"docs":{"99":{"tf":1.0}}},"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}},"6":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":2,"docs":{"132":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":1,"docs":{"82":{"tf":1.0}}},"8":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"9":{"8":{"df":1,"docs":{"109":{"tf":1.0}}},"9":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":1.0}}},"_":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"100":{"tf":1.0},"30":{"tf":3.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"107":{"tf":1.0},"58":{"tf":1.0},"86":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":3.3166247903554},"120":{"tf":2.0},"123":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"39":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":3.605551275463989},"80":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"119":{"tf":2.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}},"t":{"df":2,"docs":{"12":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0}}}},"v":{"df":8,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}}}},"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"109":{"tf":1.0},"59":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"r":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{":":{":":{"<":{"df":0,"docs":{},"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":{"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.7320508075688772},"147":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"45":{"tf":2.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":40,"docs":{"54":{"tf":2.0},"55":{"tf":1.0},"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.4142135623730951},"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.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"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.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"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":8,"docs":{"105":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":2.0}}},"df":0,"docs":{},"w":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"23":{"tf":1.0},"30":{"tf":2.0},"32":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"149":{"tf":1.0},"60":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"38":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":2.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"z":{"df":2,"docs":{"147":{"tf":1.0},"20":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":3.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":49,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":6,"docs":{"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"46":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"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":{}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":3.3166247903554}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":1,"docs":{"49":{"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":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"<":{"df":0,"docs":{},"x":{"df":2,"docs":{"31":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":11,"docs":{"111":{"tf":2.23606797749979},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"137":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":2.0}}},"p":{"df":1,"docs":{"131":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.7416573867739413}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"118":{"tf":1.4142135623730951},"132":{"tf":1.0},"29":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":5,"docs":{"131":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"78":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"17":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"14":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"107":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"29":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"r":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":2.0},"134":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.0}}},"h":{"df":3,"docs":{"39":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"1":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"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},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":1,"docs":{"119":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"39":{"tf":2.23606797749979},"74":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"147":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"146":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"80":{"tf":1.0}}}}},"df":2,"docs":{"45":{"tf":3.3166247903554},"52":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"21":{"tf":1.0},"39":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.7320508075688772},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.0}}},"df":52,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.6457513110645907},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":2.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":4,"docs":{"25":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"61":{"tf":1.0},"77":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"0":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}}},"l":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}},"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{">":{"(":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"*":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"126":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"126":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"144":{"tf":1.7320508075688772}}}}}},"x":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"114":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":21,"docs":{"0":{"tf":2.23606797749979},"114":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":7,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"68":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.7320508075688772},"150":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"h":{"df":1,"docs":{"52":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"5":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"30":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":2.23606797749979}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":3.0},"120":{"tf":2.6457513110645907},"95":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"147":{"tf":1.0},"150":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":2.0}}}}}},"r":{"*":{")":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"126":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"59":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":11,"docs":{"0":{"tf":1.0},"18":{"tf":2.449489742783178},"21":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"142":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":2.0}}},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":2.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"132":{"tf":3.3166247903554},"31":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":2.23606797749979},"147":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"32":{"tf":1.7320508075688772},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"108":{"tf":1.7320508075688772},"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},"119":{"tf":1.4142135623730951},"55":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"151":{"tf":1.0},"3":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"155":{"tf":1.0},"21":{"tf":1.0}}},"x":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}},"s":{"df":5,"docs":{"130":{"tf":1.0},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"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":2,"docs":{"147":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"151":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"60":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"74":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.23606797749979}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"134":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":3,"docs":{"119":{"tf":1.0},"45":{"tf":1.0},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"]":{"*":{">":{"(":{"[":{"df":0,"docs":{},"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":{"38":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"147":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"7":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"109":{"tf":2.0},"142":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"131":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":1,"docs":{"109":{"tf":1.0}},"t":{"'":{"df":1,"docs":{"68":{"tf":2.0}}},"df":38,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":3.4641016151377544},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":4.69041575982343},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":2.23606797749979},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":3.1622776601683795},"120":{"tf":2.0},"123":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"109":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"64":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.0},"73":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"154":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"149":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"132":{"tf":1.0},"60":{"tf":2.0}},"y":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"82":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":2.0}},"e":{">":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"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":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"101":{"tf":2.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0}}}},"t":{"a":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"116":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":2.23606797749979}},"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":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"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":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{">":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"8":{">":{"(":{"&":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"9":{"9":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{">":{">":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"&":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"b":{"\"":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"47":{"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":{},"m":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"k":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"149":{"tf":2.0}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"39":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"91":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"i":{"df":45,"docs":{"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":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":14,"docs":{"119":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"23":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"107":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"39":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":2.0},"95":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":17,"docs":{"108":{"tf":1.7320508075688772},"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},"149":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":2.0},"99":{"tf":1.0}}}},"r":{"df":2,"docs":{"152":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}},"v":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"21":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"21":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":39,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":2.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"59":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"33":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"116":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"68":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":2,"docs":{"17":{"tf":1.0},"91":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"42":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":3.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"120":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"1":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"32":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"2":{"df":1,"docs":{"76":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"39":{"tf":2.449489742783178},"42":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"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":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"120":{"tf":1.0},"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}},"y":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":2.0}}}}}}},"d":{"df":7,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"39":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"147":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":2.23606797749979},"23":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":2.23606797749979},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"14":{"tf":1.0},"86":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"12":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"147":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"t":{"df":3,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"147":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"15":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"71":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"126":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"72":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":2,"docs":{"107":{"tf":1.0},"17":{"tf":1.0}}},"t":{"df":2,"docs":{"147":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"130":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":5,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"143":{"tf":1.0}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"0":{"tf":1.0}},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"b":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":2.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"130":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"122":{"tf":1.0},"132":{"tf":1.0}},"i":{"df":7,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"138":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"39":{"tf":2.23606797749979},"77":{"tf":2.6457513110645907},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"140":{"tf":1.0}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"57":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"n":{"df":1,"docs":{"57":{"tf":3.1622776601683795}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":4,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}}}},"df":3,"docs":{"147":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"131":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":8,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"u":{"d":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":2,"docs":{"147":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"37":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"45":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":7,"docs":{"100":{"tf":1.0},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"df":26,"docs":{"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":3.1622776601683795},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"&":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"a":{"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":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"121":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"31":{"tf":2.449489742783178},"36":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.6457513110645907},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":2,"docs":{"125":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":2.23606797749979},"119":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.6457513110645907}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}},"w":{"df":1,"docs":{"3":{"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":{"10":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"146":{"tf":1.7320508075688772},"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}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"150":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":2.449489742783178},"77":{"tf":3.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"p":{"df":11,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}},"df":5,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"o":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"151":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"90":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"d":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"20":{"tf":1.7320508075688772},"39":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":2.23606797749979}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"df":5,"docs":{"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"17":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"113":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"56":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.7320508075688772},"147":{"tf":1.0},"85":{"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":4,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"109":{"tf":1.0},"74":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"57":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"r":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"143":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"144":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"92":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"75":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"115":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"41":{"tf":1.0}},"t":{"df":60,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"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},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"154":{"tf":1.0},"66":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"r":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"139":{"tf":1.0}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0}}}},"y":{"df":11,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"77":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"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":{"116":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"17":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"a":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"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":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"%":{"2":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}}},"y":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.8284271247461903},"131":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"109":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"23":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"14":{"tf":1.0},"46":{"tf":2.23606797749979},"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},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"147":{"tf":1.0},"26":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.23606797749979}}}},"df":1,"docs":{"114":{"tf":1.0}}},"k":{"df":3,"docs":{"106":{"tf":1.0},"140":{"tf":1.0},"37":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":2.449489742783178},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"131":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.7320508075688772},"16":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"113":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":2.0},"130":{"tf":2.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":1.0},"74":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"37":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":1,"docs":{"112":{"tf":1.0}}}},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"1":{"df":45,"docs":{"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.4142135623730951},"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},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":2.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"139":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"60":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"147":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":5,"docs":{"126":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"134":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"134":{"tf":1.7320508075688772},"21":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"23":{"tf":2.0},"30":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"150":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":2.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}}},"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":{"151":{"tf":1.0}}}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":1,"docs":{"142":{"tf":1.0}},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":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":{"126":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"86":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"137":{"tf":1.7320508075688772},"23":{"tf":2.0},"5":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"68":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.0}},"i":{"df":2,"docs":{"32":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"39":{"tf":2.8284271247461903},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":8,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0},"90":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"32":{"tf":1.0}}}}},"df":99,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":2.6457513110645907},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":2.6457513110645907},"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"3":{"tf":2.449489742783178},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.1622776601683795},"67":{"tf":1.4142135623730951},"68":{"tf":3.4641016151377544},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"90":{"tf":2.449489742783178},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"59":{"tf":1.0},"75":{"tf":1.0},"93":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":114,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":2.449489742783178},"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.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":3.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":3.0},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"77":{"tf":3.872983346207417},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"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":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.6457513110645907},"92":{"tf":2.449489742783178},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"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":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"153":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{}},"v":{"df":0,"docs":{},"m":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"y":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":3,"docs":{"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"e":{">":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"119":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":3.3166247903554}}}}}},"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":3,"docs":{"103":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":2.0},"152":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"w":{"df":6,"docs":{"109":{"tf":2.0},"143":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.0},"11":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}},"e":{"df":2,"docs":{"115":{"tf":1.0},"50":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"59":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"w":{"df":5,"docs":{"143":{"tf":1.0},"155":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"147":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"l":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"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":{"c":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"109":{"tf":1.0},"12":{"tf":1.0},"147":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"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":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"5":{"df":1,"docs":{"50":{"tf":1.0}}},"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"50":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"142":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"127":{"tf":1.0},"131":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":3.1622776601683795},"7":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.0}}}}},"df":14,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"149":{"tf":1.0}}}},"df":7,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"151":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"w":{"df":2,"docs":{"55":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":2,"docs":{"111":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.0},"45":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"19":{"tf":2.0},"21":{"tf":1.0},"35":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"t":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.0},"57":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"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},"119":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":2.0}}}}}}},"y":{"df":1,"docs":{"45":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0}}}},"g":{"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"17":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":2.8284271247461903},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}}}}},"p":{"df":1,"docs":{"143":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"60":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"21":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"y":{"df":5,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"31":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":3,"docs":{"126":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"66":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"149":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"146":{"tf":1.0},"150":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"116":{"tf":1.0},"68":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"42":{"tf":1.0},"47":{"tf":1.0}},"f":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"147":{"tf":1.0},"44":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"121":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"151":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"84":{"tf":1.0}},"t":{"df":3,"docs":{"134":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"74":{"tf":3.4641016151377544},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"55":{"tf":2.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":2,"docs":{"122":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"151":{"tf":1.0}}},"df":24,"docs":{"138":{"tf":2.23606797749979},"139":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":2.23606797749979},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"110":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"36":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"114":{"tf":1.0},"68":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"df":2,"docs":{"116":{"tf":1.0},"66":{"tf":2.23606797749979}}}},"i":{"d":{"df":37,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"4":{"df":0,"docs":{},"i":{"6":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"r":{"8":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":19,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"126":{"tf":2.449489742783178},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"100":{"tf":1.0},"109":{"tf":1.0},"39":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"144":{"tf":1.0}}}},"w":{"d":{")":{":":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"95":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"44":{"tf":1.0},"60":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"d":{"df":2,"docs":{"138":{"tf":1.0},"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":2,"docs":{"127":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"139":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"32":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"147":{"tf":1.0},"16":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.0},"137":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":3,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}},"v":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"106":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"21":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"29":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":2.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},"147":{"tf":4.47213595499958},"44":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"23":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":29,"docs":{"100":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":2.23606797749979},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":4.69041575982343},"7":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"37":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"v":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"114":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":2.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":2.23606797749979},"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"45":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"114":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"33":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"57":{"tf":1.0}}}}}},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"36":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"30":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.4142135623730951},"73":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"126":{"tf":1.0},"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"17":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"132":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"125":{"tf":1.0},"21":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"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":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.0},"86":{"tf":2.449489742783178},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":2.449489742783178},"56":{"tf":1.0}}}}}},"df":1,"docs":{"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"(":{"&":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"109":{"tf":1.0},"126":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"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":{"110":{"tf":1.0}}}}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.7320508075688772},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"i":{"df":5,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"56":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":{"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":2.6457513110645907}}},"w":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"32":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":3.1622776601683795},"109":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.7320508075688772},"126":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":4.242640687119285},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"'":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"147":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"v":{"df":1,"docs":{"149":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"57":{"tf":1.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"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":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":6,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"14":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.0}}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"17":{"tf":1.0}}}},"l":{"df":3,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.6457513110645907}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"114":{"tf":1.0},"147":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"46":{"tf":2.23606797749979},"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},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"109":{"tf":1.0},"112":{"tf":2.23606797749979},"45":{"tf":3.872983346207417},"68":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"155":{"tf":1.0}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"103":{"tf":1.0},"23":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"60":{"tf":1.0},"64":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"5":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"57":{"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":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"39":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":4,"docs":{"29":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":1.0},"57":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":2.0},"132":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"65":{"tf":1.0},"86":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"b":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"145":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"132":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.7320508075688772},"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":2.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},">":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":2.0}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":17,"docs":{"20":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":33,"docs":{"100":{"tf":2.23606797749979},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"3":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"149":{"tf":1.0},"61":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":6,"docs":{"45":{"tf":2.0},"49":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"146":{"tf":1.0},"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"116":{"tf":1.0},"147":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"33":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":21,"docs":{"114":{"tf":1.0},"18":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"76":{"tf":2.23606797749979},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.0},"143":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"63":{"tf":1.0}}}},"i":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"51":{"tf":1.0}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"115":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}},"u":{"df":3,"docs":{"60":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":2.0}}}}},"l":{"df":1,"docs":{"118":{"tf":1.0}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":3.3166247903554},"65":{"tf":3.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"114":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"p":{"df":2,"docs":{"6":{"tf":1.0},"76":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"146":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":2.0}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"o":{"df":3,"docs":{"115":{"tf":1.0},"132":{"tf":1.0},"36":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"30":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":24,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":2.6457513110645907},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"86":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"39":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"126":{"tf":2.0},"132":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":3.0},"49":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":7,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"105":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"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":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772},"79":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"100":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"120":{"tf":1.0}}}}},"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":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"86":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"126":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.0},"153":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"100":{"tf":2.0},"114":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":77,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"65":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}},"v":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"56":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":2.0},"65":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.7320508075688772}},"e":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"b":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"k":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.0},"16":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}},":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"126":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"u":{"8":{"df":4,"docs":{"109":{"tf":2.0},"42":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"61":{"tf":1.0}}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":5,"docs":{"11":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.0},"47":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"m":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"2":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"17":{"tf":2.8284271247461903},"33":{"tf":1.0},"47":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"132":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":2.449489742783178},"107":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"31":{"tf":1.0},"39":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.4142135623730951}}}},"y":{"df":6,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"6":{"tf":1.4142135623730951},"65":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"61":{"tf":1.0}}}},"r":{"df":4,"docs":{"116":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0}}},"v":{"df":4,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":156,"docs":{"0":{"tf":1.0},"1":{"tf":2.23606797749979},"10":{"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},"11":{"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},"12":{"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},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"14":{"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},"15":{"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},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"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},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"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},"7":{"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.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"145":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"146":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"40":{"tf":1.0},"82":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"142":{"tf":1.0},"37":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.0},"40":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"32":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"x":{"\"":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"45":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903},"59":{"tf":2.0},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"x":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":8,"docs":{"109":{"tf":1.0},"31":{"tf":2.0},"39":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795},"61":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}},"v":{"df":4,"docs":{"149":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}}}}},"z":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":2.23606797749979}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"2":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}},"3":{"df":1,"docs":{"93":{"tf":1.0}}},"4":{"df":1,"docs":{"138":{"tf":1.0}}},"a":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"30":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"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":{"133":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"124":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"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":{},"t":{"d":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.0},"4":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"120":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"41":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"142":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"107":{"tf":1.0}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"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":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"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":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"m":{"1":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"131":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"23":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"69":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"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":{"120":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"151":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"116":{"tf":1.0},"135":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"b":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"41":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"50":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":5,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"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/book/book/week_1/Basic_move_syntax.html b/book/book/week_1/Basic_move_syntax.html index 6253f1a..b494e25 100644 --- a/book/book/week_1/Basic_move_syntax.html +++ b/book/book/week_1/Basic_move_syntax.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
@@ -202,7 +210,8 @@

Primitives

}

  • Integers can be type cast with the as keyword.
  • -
  • The signer type represents the sender of a transaction and is used for access control and authentication.
  • +
  • signer represents the sender of a transaction and is used for access control and authentication.
  • +
  • signer can be converted to address with signer::address_of.

Abilities

Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust.

@@ -233,14 +242,15 @@

Gen }

Resources, References, and Mutation

    -
  • You can create a reference with &.
  • -
  • Reference
  • +
  • You can create a reference with & and &mut.
  • +
  • You cannot use the mut keyword during assignment, .e.g., let mut value = ... will not compile.
  • Global storage operators move_to, move_from, borrow_global_mut, borrow_global, and exists in Move enable reading from and writing to resources stored in the blockchain's global storage.
  • The acquires keyword is used to specify which resources a function acquires ownership of a resource during execution.
#![allow(unused)]
 fn main() {
 module collection::collection {
+    use std::signer;
 
     struct Item has store, drop {}
     struct Collection has key, store {
diff --git a/book/book/week_1/Debugging_basics.html b/book/book/week_1/Debugging_basics.html
index 66cb565..7df9e23 100644
--- a/book/book/week_1/Debugging_basics.html
+++ b/book/book/week_1/Debugging_basics.html
@@ -30,6 +30,8 @@
 
         
 
+        
+        
     
     
     
@@ -118,6 +120,12 @@

+ + + + + +
@@ -148,6 +156,13 @@

💻 HelloWorld

Is a very simple program for MoveVM. You can find it at examples/move/hello_world.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Byte strings
  • +
+
#![allow(unused)]
 fn main() {
 script {
@@ -172,82 +187,170 @@ 

💻 HelloWorld<
echo 48656c6c6f2c20776f726c6421 | xxd -r - p
 

💻 Fib

-

The obligatory Move program that computes the $nth$ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.

+

The obligatory Move program that computes the nth Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it examples/move/fib.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Byte strings
  • +
+
+

💻 DataStructures

+

From scratch implementation of a priority queue, a couple variations of a hash map, and a binary tree. This may be a useful reference point for building more challenging projects that require custom data strucures. You can find it at examples/move/data_structures.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Vectors
  • +
  • BCS
  • +
  • Move idioms
  • +
+

💻 ResourceRoulette

-

A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it examples/move/resource_roulette.

+

A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods public fun bid and public fun spin. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it at examples/move/resource_roulette.

+
+

Learnings leveraged:

+
    +
  • Basic Move syntax
  • +
  • Signer and address types
  • +
  • Borrows
  • +
  • Initialization
  • +
  • Move idioms
  • +
+
#![allow(unused)]
 fn main() {
 module resource_roulette::resource_roulette {
   use std::vector;
+  use std::signer;
+
+  const ENO_UNAUTHORIZED_ADDRESS : u64 = 0;
 
   // ResourceRoulette struct representing the contract state
-  struct ResourceRoulette {
+  struct ResourceRoulette has key {
     bids: vector<vector<address>>,
     owner: address,
+    state : u64
   }
 
-  struct RouletteWinnings {
+  struct RouletteWinnings has key {
     amount : u64
   }
 
   // Initialization function for the ResourceRoulette contract
-  public entry fun init(account: &signer) {
+  public fun init(account: &signer) {
+
+    assert!(signer::address_of(account) == @resource_roulette, ENO_UNAUTHORIZED_ADDRESS);
 
     let bids = vector::empty<vector<address>>();
     let i = 0;
-    while i < 32 {
-      vector::push_back(&mut bids, vector::empty<address>())
+    while (i < 32) {
+      vector::push_back(&mut bids, vector::empty<address>());
       i = i + 1;
     };
 
-    move_to<ResourceRoulette>(account, ResourceRoulette {
+    move_to(account, ResourceRoulette {
       bids,
       owner: @resource_roulette,
+      state : 17203943403948
     });
 
   }
 
+  // Initializes winnings for a signer
+  public fun init_winnings(account: &signer) {
+    move_to(account, RouletteWinnings {
+      amount: 0,
+    });
+  }
+
   // Bid function to allow signers to bid on a specific slot
-  public entry fun bid(sender: &signer, slot: u8) acquires ResourceRoulette {
-    let roulette = borrow_global_mut<ResourceRoulette>(@resource_roulette);
-    let bids_size = vector::length(&roulette.bids);
-    assert!(slot < bids_size, 99);
-    // assert bids size does not exceed 100
-    assert!(bids_size < 100, 0); 
-
-    let slot_bids = vector::borrow_mut(&mut roulette.bids, slot);
-    vector::push_back(&mut slot_bids, signer::address_of(sender));
+  public fun bid(account : &signer, slot: u8) acquires ResourceRoulette {
+
+    if (!exists<RouletteWinnings>(signer::address_of(account))) {
+      init_winnings(account);
+    };
+
+    let self = borrow_global_mut<ResourceRoulette>(@resource_roulette);
+    roll_state(self);
+    let bids_size = vector::length(&self.bids);
+    assert!(slot < (bids_size as u8), 99);
+    let slot_bids = vector::borrow_mut(&mut self.bids, (slot as u64));
+    vector::push_back(slot_bids, signer::address_of(account));
+
   }
 
-  public fun total_bid(): u64 acquires ResourceRoulette {
+  public fun total_bid() : u64 {
     // Make this more complex to support actual bidding
-    let roulette = borrow_global<ResourceRoulette>(@resource_roulette);
-    vector::length(&roulette.bids)
+    return 100
   }
 
-  // Roll function to select a pseudorandom slot and pay out all signers who selected that slot
-  public entry fun spin(sender: &signer) acquires ResourceRoulette {
-    let roulette = ResourceRoulette::borrow_global_mut();
-    assert!(singer::address_of(sender) == roulette.owner, 98);
+  // rolls state using xoroshiro prng
+  fun roll_state(self :&mut ResourceRoulette) {
+    let state = (self.state as u256);
+    let x = state;
+    let y = state >> 64;
 
-    let resource_vector_size = vector::length(&roulette.bids);
-    let winning_slot = (0x1000 % resource_vector_size) as u8;
+    let t = x ^ y;
+    state = ((x << 55) | (x >> 9)) + y + t;
 
-    let winners = vector::borrow(&roulette.bids, winning_slot);
+    y = y ^ x;
+    state = state + ((y << 14) | (y >> 50)) + x + t;
+    
+    state = state + t;
+    state = state % (2^128 - 1);
+    self.state = (state as u64);
 
-    let num_winners = vector::length(&winners_vec);
-    let balance_per_winner = total_bid() / num_winners as u64;
+  }
 
-    let mut i = 0;
-    while i < num_winners {
-      let winner = vector::borrow(&winners_vec, i);
-      let mut winnings = borrow_global_mut<RouletteWinnings>(winner);
-      winnings.amount = winnings.amount + balance_per_winner;
+  public fun get_noise() : u64 {
+    1
+  }
+
+  fun empty_bids(self : &mut ResourceRoulette){
+
+    // empty the slots
+    let bids = vector::empty<vector<address>>();
+    let i = 0;
+    while (i < 32) {
+      vector::push_back(&mut bids, vector::empty<address>());
       i = i + 1;
     };
+    self.bids = bids;
+
+  }
+
+  // Roll function to select a pseudorandom slot and pay out all signers who selected that slot
+  public fun spin() acquires ResourceRoulette, RouletteWinnings {
+
+    let self = borrow_global_mut<ResourceRoulette>(@resource_roulette);
+
+    // get the winning slot
+    let bids_size = vector::length(&self.bids);
+    roll_state(self);
+    let winning_slot = (get_noise() * self.state % (bids_size as u64)) ;
+
+    // pay out the winners
+    let winners = vector::borrow(&self.bids, winning_slot);
+    let num_winners = vector::length(winners);
+
+    if (num_winners > 0){
+      let balance_per_winner = total_bid()/( num_winners as u64);
+      let i = 0;
+      while (i < num_winners) {
+        let winner = vector::borrow(winners, i);
+        let winnings = borrow_global_mut<RouletteWinnings>(*winner);
+        winnings.amount = winnings.amount + balance_per_winner;
+        i = i + 1;
+      };
+    };
+
+    empty_bids(self);
 
   }
 
+  // tests...
+
 }
 }
diff --git a/book/book/week_1/Developer_setup.html b/book/book/week_1/Developer_setup.html index b8daf2b..f9c4f95 100644 --- a/book/book/week_1/Developer_setup.html +++ b/book/book/week_1/Developer_setup.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_1/Inro_to_move.html b/book/book/week_1/Inro_to_move.html index 98b960d..e10732c 100644 --- a/book/book/week_1/Inro_to_move.html +++ b/book/book/week_1/Inro_to_move.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_1/Module_and_build_system.html b/book/book/week_1/Module_and_build_system.html index 7e4ab04..69c0903 100644 --- a/book/book/week_1/Module_and_build_system.html +++ b/book/book/week_1/Module_and_build_system.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_1/Movement_standard_library.html b/book/book/week_1/Movement_standard_library.html index 13465a8..647d718 100644 --- a/book/book/week_1/Movement_standard_library.html +++ b/book/book/week_1/Movement_standard_library.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_1/week_1.html b/book/book/week_1/week_1.html index 0413f36..5d5df36 100644 --- a/book/book/week_1/week_1.html +++ b/book/book/week_1/week_1.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_2/Design_patterns.html b/book/book/week_2/Design_patterns.html index 4416339..d1ea3fe 100644 --- a/book/book/week_2/Design_patterns.html +++ b/book/book/week_2/Design_patterns.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_2/Development_staging.html b/book/book/week_2/Development_staging.html index 0c88008..ddd3bee 100644 --- a/book/book/week_2/Development_staging.html +++ b/book/book/week_2/Development_staging.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_2/Generics.html b/book/book/week_2/Generics.html index a1038b1..d9dc7a0 100644 --- a/book/book/week_2/Generics.html +++ b/book/book/week_2/Generics.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
@@ -388,6 +396,7 @@

💻 MoveNav

use std::vector; use std::option; use std::debug; + use std::string; struct Graph { nodes: vector<Vector3>, @@ -412,7 +421,7 @@

💻 MoveNav

} struct NavigationType { - name: string, + name: string::String, speed: u8, } @@ -424,22 +433,22 @@

💻 MoveNav

if nav_type.name == "Walk" { debug::print("Walking at speed ", nav_type.speed); // Perform walking navigation logic - return option::None; + return option::none() } if nav_type.name == "Run" { debug::print("Running at speed ", nav_type.speed); // Perform running navigation logic - return option::None; + return option::none() } if nav_type.name == "Fly" { debug::print("Flying at speed ", nav_type.speed); // Perform flying navigation logic - return option::None; + return option::none() } else { debug::print("Unsupported navigation type"); - return option::None; + return option::none() } diff --git a/book/book/week_2/Intro_smart_contracts.html b/book/book/week_2/Intro_smart_contracts.html index 5a10136..3b0a469 100644 --- a/book/book/week_2/Intro_smart_contracts.html +++ b/book/book/week_2/Intro_smart_contracts.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_2/Safety.html b/book/book/week_2/Safety.html index 8256181..a8a230c 100644 --- a/book/book/week_2/Safety.html +++ b/book/book/week_2/Safety.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_2/Testing.html b/book/book/week_2/Testing.html index 3619137..de63472 100644 --- a/book/book/week_2/Testing.html +++ b/book/book/week_2/Testing.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
@@ -279,9 +287,52 @@

Semi-automati

In many cases, you will find opportunities to automate the inspection of resources via bash, python, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities.

Share -{: .share-block} Share your semi-automated workflows with us!

+

Testing directives

+

Movement provides several directives for testing which are important to understand.

+

#[test]

+

Marks a test function. Can be provided with arguments.

+

When testing procedures that require signers, you will need set their values in the directive. Take the example below from 💻 ResourceRoulette

+
#![allow(unused)]
+fn main() {
+ #[test(account = @resource_roulette, bidder_one = @0x3)]
+#[expected_failure(abort_code = FLAG_WINNER)]
+public fun test_wins(account : &signer, bidder_one : &signer) acquires 
+}
+

Here our test expects both resource account, i.e., resource_roulette, and a bidder signer, i.e., bidder_one. We will discuss how these are used below.

+

#[test_only]

+

Test only is used for defining symbols that will only be compiled when testing. It can be useful for creating mocks and stubs, test boundaries and more.

+

#[expect_failure]

+

Allows you to check if a routine aborts as expected, i.e., matching a certain error code.

+

In addition to asserting intended failures, you can use this behavior to define more complex tests that are based on boundary conditions being crossed. The example below from 💻 Resource Roulette uses this pattern to test whether winners emerge from the pseudorandom spinner.

+
#![allow(unused)]
+fn main() {
+#[test_only]
+const BOUNDARY_WINNER : u64 = 1;
+
+// Under the current state rolling implementation this will work
+// More robust testing would calculate system dynamics
+#[test(account = @resource_roulette, bidder_one = @0x3)]
+#[expected_failure(abort_code = FLAG_WINNER)]
+public fun test_wins(account : &signer, bidder_one : &signer) acquires ResourceRoulette, RouletteWinnings {
+
+    init(account);
+    let i : u64 = 0;
+    while (i < 1_000) {
+        bid(bidder_one, 7);
+        spin();
+
+        let winnings = borrow_global<RouletteWinnings>(signer::address_of(bidder_one));
+        if (winnings.amount > 0) {
+        abort BOUNDARY_WINNER
+        };
+
+        i = i + 1;
+    };
+
+}
+}

Mocks, stubs, and state-based simulation

In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies.

Mocks and stubs

@@ -338,7 +389,6 @@

For movement<

Contribution -{: .contributor-block} Help us develop mocking and stubbing tools for Movement.

diff --git a/book/book/week_2/week_2.html b/book/book/week_2/week_2.html index 544257c..df73742 100644 --- a/book/book/week_2/week_2.html +++ b/book/book/week_2/week_2.html @@ -30,6 +30,8 @@ + +
diff --git a/book/book/week_3/Access_control.html b/book/book/week_3/Access_control.html index 075221b..d287717 100644 --- a/book/book/week_3/Access_control.html +++ b/book/book/week_3/Access_control.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_3/Common_blockchain_system_design_patterns.html b/book/book/week_3/Common_blockchain_system_design_patterns.html index e5f16fa..ade22ec 100644 --- a/book/book/week_3/Common_blockchain_system_design_patterns.html +++ b/book/book/week_3/Common_blockchain_system_design_patterns.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_3/DeFi.html b/book/book/week_3/DeFi.html index 9aa4f9f..66a3574 100644 --- a/book/book/week_3/DeFi.html +++ b/book/book/week_3/DeFi.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_3/Deploying_on_M1.html b/book/book/week_3/Deploying_on_M1.html index 4d2d262..9c19267 100644 --- a/book/book/week_3/Deploying_on_M1.html +++ b/book/book/week_3/Deploying_on_M1.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_3/Security.html b/book/book/week_3/Security.html index d257a85..7231257 100644 --- a/book/book/week_3/Security.html +++ b/book/book/week_3/Security.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_3/week_3.html b/book/book/week_3/week_3.html index 70da94b..f0d5fcb 100644 --- a/book/book/week_3/week_3.html +++ b/book/book/week_3/week_3.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_4/Guidelines.html b/book/book/week_4/Guidelines.html index c2f7919..5f3017d 100644 --- a/book/book/week_4/Guidelines.html +++ b/book/book/week_4/Guidelines.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_4/Next_steps.html b/book/book/week_4/Next_steps.html index 6bc96f9..5059477 100644 --- a/book/book/week_4/Next_steps.html +++ b/book/book/week_4/Next_steps.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_4/Project_requirements_and_recommendations.html b/book/book/week_4/Project_requirements_and_recommendations.html index 956b4e8..f120115 100644 --- a/book/book/week_4/Project_requirements_and_recommendations.html +++ b/book/book/week_4/Project_requirements_and_recommendations.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/book/week_4/week_4.html b/book/book/week_4/week_4.html index 98b39e0..b19f28d 100644 --- a/book/book/week_4/week_4.html +++ b/book/book/week_4/week_4.html @@ -30,6 +30,8 @@ + +
@@ -118,6 +120,12 @@

+ + + + + +
diff --git a/book/src/Prologue.md b/book/src/Prologue.md index 1d72a8f..aa0ad14 100644 --- a/book/src/Prologue.md +++ b/book/src/Prologue.md @@ -5,4 +5,6 @@ This booklet was originally developed for a month-long hackathon, and so has con By the end of this book, you will have the skills to build for the Movement blockchain and the contextual awareness to understand its advantages. -If you are looking for in-depth documentation of Movement or the `movement` CLI please head to [docs.movementlabs.xyz](https://docs.movementlabs.xyz/). \ No newline at end of file +If you are looking for in-depth documentation of Movement or the `movement` CLI please head to [docs.movementlabs.xyz](https://docs.movementlabs.xyz/). + +> This book has an accompanying GitHub repository here. You can also navigate to it by clicking the GitHub icon on any page. diff --git a/book/src/week_1/Basic_move_syntax.md b/book/src/week_1/Basic_move_syntax.md index d85cbd2..612cd5d 100644 --- a/book/src/week_1/Basic_move_syntax.md +++ b/book/src/week_1/Basic_move_syntax.md @@ -55,7 +55,8 @@ let byte_val = b"hello, world!"; // byte string let hex_val = x"48656C6C6F210A"; // hex string ``` - Integers can be type cast with the `as` keyword. -- The signer type represents the sender of a transaction and is used for access control and authentication. +- `signer` represents the sender of a transaction and is used for access control and authentication. +- `signer` can be converted to address with `signer::address_of`. ### Abilities Type abilities in Move specify certain primitive memory behaviors and constraints for types. These abilities are perhaps most similar to different pointer types in Rust. @@ -83,12 +84,13 @@ public fun get_fee(): u64 acquires LiquidityPool { ``` ## Resources, References, and Mutation -- You can create a reference with `&`. -- Reference +- You can create a reference with `&` and `&mut`. +- You cannot use the `mut` keyword during assignment, .e.g., `let mut value = ...` will not compile. - Global storage operators `move_to`, `move_from`, `borrow_global_mut`, `borrow_global`, and `exists` in Move enable reading from and writing to resources stored in the blockchain's global storage. - The `acquires` keyword is used to specify which resources a function acquires ownership of a resource during execution. ```rust module collection::collection { + use std::signer; struct Item has store, drop {} struct Collection has key, store { diff --git a/book/src/week_1/Debugging_basics.md b/book/src/week_1/Debugging_basics.md index 703c410..5ce5198 100644 --- a/book/src/week_1/Debugging_basics.md +++ b/book/src/week_1/Debugging_basics.md @@ -4,6 +4,10 @@ This section introduces a few basic smart contracts from this repository as a st ## 💻 HelloWorld Is a very simple program for `MoveVM`. You can find it at `examples/move/hello_world`. +> Learnings leveraged: +> - Basic Move syntax +> - Byte strings + ```rust script { use std::debug; @@ -31,82 +35,162 @@ echo 48656c6c6f2c20776f726c6421 | xxd -r - p ``` ## 💻 Fib -The obligatory Move program that computes the $nth$ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it `examples/move/fib`. +The obligatory Move program that computes the _nth_ Fibonacci number. We will refer to this later when we do 💻 MulticontractFib. You can find it and instructions to run it `examples/move/fib`. + +> Learnings leveraged: +> - Basic Move syntax +> - Byte strings + +## 💻 DataStructures +From scratch implementation of a priority queue, a couple variations of a hash map, and a binary tree. This may be a useful reference point for building more challenging projects that require custom data strucures. You can find it at `examples/move/data_structures`. + +> Learnings leveraged: +> - Basic Move syntax +> - Vectors +> - BCS +> - Move idioms ## 💻 ResourceRoulette -A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods `public fun bid` and `public fun spin`. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it `examples/move/resource_roulette`. +A game of roulette on MoveVM. Place your address on an element in the vector. Contains methods `public fun bid` and `public fun spin`. Receive a payout if you placed your address on the correct cell. You can find it and instructions to run it at `examples/move/resource_roulette`. + +> Learnings leveraged: +> - Basic Move syntax +> - Signer and address types +> - Borrows +> - Initialization +> - Move idioms ```rust module resource_roulette::resource_roulette { use std::vector; + use std::signer; + + const ENO_UNAUTHORIZED_ADDRESS : u64 = 0; // ResourceRoulette struct representing the contract state - struct ResourceRoulette { + struct ResourceRoulette has key { bids: vector>, owner: address, + state : u64 } - struct RouletteWinnings { + struct RouletteWinnings has key { amount : u64 } // Initialization function for the ResourceRoulette contract - public entry fun init(account: &signer) { + public fun init(account: &signer) { + + assert!(signer::address_of(account) == @resource_roulette, ENO_UNAUTHORIZED_ADDRESS); let bids = vector::empty>(); let i = 0; - while i < 32 { - vector::push_back(&mut bids, vector::empty
()) + while (i < 32) { + vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; - move_to(account, ResourceRoulette { + move_to(account, ResourceRoulette { bids, owner: @resource_roulette, + state : 17203943403948 }); } + // Initializes winnings for a signer + public fun init_winnings(account: &signer) { + move_to(account, RouletteWinnings { + amount: 0, + }); + } + // Bid function to allow signers to bid on a specific slot - public entry fun bid(sender: &signer, slot: u8) acquires ResourceRoulette { - let roulette = borrow_global_mut(@resource_roulette); - let bids_size = vector::length(&roulette.bids); - assert!(slot < bids_size, 99); - // assert bids size does not exceed 100 - assert!(bids_size < 100, 0); - - let slot_bids = vector::borrow_mut(&mut roulette.bids, slot); - vector::push_back(&mut slot_bids, signer::address_of(sender)); + public fun bid(account : &signer, slot: u8) acquires ResourceRoulette { + + if (!exists(signer::address_of(account))) { + init_winnings(account); + }; + + let self = borrow_global_mut(@resource_roulette); + roll_state(self); + let bids_size = vector::length(&self.bids); + assert!(slot < (bids_size as u8), 99); + let slot_bids = vector::borrow_mut(&mut self.bids, (slot as u64)); + vector::push_back(slot_bids, signer::address_of(account)); + } - public fun total_bid(): u64 acquires ResourceRoulette { + public fun total_bid() : u64 { // Make this more complex to support actual bidding - let roulette = borrow_global(@resource_roulette); - vector::length(&roulette.bids) + return 100 } - // Roll function to select a pseudorandom slot and pay out all signers who selected that slot - public entry fun spin(sender: &signer) acquires ResourceRoulette { - let roulette = ResourceRoulette::borrow_global_mut(); - assert!(singer::address_of(sender) == roulette.owner, 98); + // rolls state using xoroshiro prng + fun roll_state(self :&mut ResourceRoulette) { + let state = (self.state as u256); + let x = state; + let y = state >> 64; + + let t = x ^ y; + state = ((x << 55) | (x >> 9)) + y + t; - let resource_vector_size = vector::length(&roulette.bids); - let winning_slot = (0x1000 % resource_vector_size) as u8; + y = y ^ x; + state = state + ((y << 14) | (y >> 50)) + x + t; + + state = state + t; + state = state % (2^128 - 1); + self.state = (state as u64); - let winners = vector::borrow(&roulette.bids, winning_slot); + } - let num_winners = vector::length(&winners_vec); - let balance_per_winner = total_bid() / num_winners as u64; + public fun get_noise() : u64 { + 1 + } - let mut i = 0; - while i < num_winners { - let winner = vector::borrow(&winners_vec, i); - let mut winnings = borrow_global_mut(winner); - winnings.amount = winnings.amount + balance_per_winner; + fun empty_bids(self : &mut ResourceRoulette){ + + // empty the slots + let bids = vector::empty>(); + let i = 0; + while (i < 32) { + vector::push_back(&mut bids, vector::empty
()); i = i + 1; }; + self.bids = bids; } + // Roll function to select a pseudorandom slot and pay out all signers who selected that slot + public fun spin() acquires ResourceRoulette, RouletteWinnings { + + let self = borrow_global_mut(@resource_roulette); + + // get the winning slot + let bids_size = vector::length(&self.bids); + roll_state(self); + let winning_slot = (get_noise() * self.state % (bids_size as u64)) ; + + // pay out the winners + let winners = vector::borrow(&self.bids, winning_slot); + let num_winners = vector::length(winners); + + if (num_winners > 0){ + let balance_per_winner = total_bid()/( num_winners as u64); + let i = 0; + while (i < num_winners) { + let winner = vector::borrow(winners, i); + let winnings = borrow_global_mut(*winner); + winnings.amount = winnings.amount + balance_per_winner; + i = i + 1; + }; + }; + + empty_bids(self); + + } + + // tests... + } ``` \ No newline at end of file diff --git a/book/src/week_2/Generics.md b/book/src/week_2/Generics.md index f67e9b2..a896311 100644 --- a/book/src/week_2/Generics.md +++ b/book/src/week_2/Generics.md @@ -255,6 +255,7 @@ module 0x42::MoveNav { use std::vector; use std::option; use std::debug; + use std::string; struct Graph { nodes: vector, @@ -279,7 +280,7 @@ module 0x42::MoveNav { } struct NavigationType { - name: string, + name: string::String, speed: u8, } @@ -291,22 +292,22 @@ module 0x42::MoveNav { if nav_type.name == "Walk" { debug::print("Walking at speed ", nav_type.speed); // Perform walking navigation logic - return option::None; + return option::none() } if nav_type.name == "Run" { debug::print("Running at speed ", nav_type.speed); // Perform running navigation logic - return option::None; + return option::none() } if nav_type.name == "Fly" { debug::print("Flying at speed ", nav_type.speed); // Perform flying navigation logic - return option::None; + return option::none() } else { debug::print("Unsupported navigation type"); - return option::None; + return option::none() } diff --git a/book/src/week_2/Testing.md b/book/src/week_2/Testing.md index b5a1ec1..2f77280 100644 --- a/book/src/week_2/Testing.md +++ b/book/src/week_2/Testing.md @@ -149,9 +149,57 @@ finish "Queryed resourced for account!" In many cases, you will find opportunities to automate the inspection of resources via `bash`, `python`, and other scripts. As you develop any of these testing strategies, we encourage you to share them with us so that we might make improvements to our CLI's capabilities. > **Share** -> {: .share-block} > Share your semi-automated workflows with us! +## Testing directives +Movement provides several directives for testing which are important to understand. +### `#[test]` +Marks a test function. Can be provided with arguments. + +When testing procedures that require signers, you will need set their values in the directive. Take the example below from 💻 ResourceRoulette + +```rust + #[test(account = @resource_roulette, bidder_one = @0x3)] +#[expected_failure(abort_code = FLAG_WINNER)] +public fun test_wins(account : &signer, bidder_one : &signer) acquires +``` + +Here our test expects both resource account, i.e., `resource_roulette`, and a bidder signer, i.e., `bidder_one`. We will discuss how these are used below. + +### `#[test_only]` +Test only is used for defining symbols that will only be compiled when testing. It can be useful for creating mocks and stubs, test boundaries and more. + +### `#[expect_failure]` +Allows you to check if a routine aborts as expected, i.e., matching a certain error code. + +In addition to asserting intended failures, you can use this behavior to define more complex tests that are based on boundary conditions being crossed. The example below from 💻 Resource Roulette uses this pattern to test whether winners emerge from the pseudorandom spinner. + +```rust +#[test_only] +const BOUNDARY_WINNER : u64 = 1; + +// Under the current state rolling implementation this will work +// More robust testing would calculate system dynamics +#[test(account = @resource_roulette, bidder_one = @0x3)] +#[expected_failure(abort_code = FLAG_WINNER)] +public fun test_wins(account : &signer, bidder_one : &signer) acquires ResourceRoulette, RouletteWinnings { + + init(account); + let i : u64 = 0; + while (i < 1_000) { + bid(bidder_one, 7); + spin(); + + let winnings = borrow_global(signer::address_of(bidder_one)); + if (winnings.amount > 0) { + abort BOUNDARY_WINNER + }; + + i = i + 1; + }; + +} +``` ## Mocks, stubs, and state-based simulation In order to simulate and control the behavior of dependencies or external systems during testing, you may whish to apply mocking, stubbing, and stated-based simulation strategies. @@ -216,5 +264,4 @@ finish "Set environment to slow!" ``` > **Contribution** -> {: .contributor-block} > Help us develop mocking and stubbing tools for Movement. \ No newline at end of file diff --git a/examples_nursery/movement/resource_roulette/sources/resource_roulette.move b/examples_nursery/movement/resource_roulette/sources/resource_roulette.move index 86d542e..02d3989 100644 --- a/examples_nursery/movement/resource_roulette/sources/resource_roulette.move +++ b/examples_nursery/movement/resource_roulette/sources/resource_roulette.move @@ -205,7 +205,7 @@ module resource_roulette::resource_roulette { } #[test_only] - const FLAG_WINNER : u64 = 1; + const BOUNDARY_WINNER : u64 = 1; // Under the current state rolling implementation this will work // More robust testing would calculate system dynamics @@ -221,7 +221,7 @@ module resource_roulette::resource_roulette { let winnings = borrow_global(signer::address_of(bidder_one)); if (winnings.amount > 0) { - abort FLAG_WINNER + abort BOUNDARY_WINNER }; i = i + 1; @@ -248,7 +248,7 @@ module resource_roulette::resource_roulette { let winnings_two = borrow_global(signer::address_of(bidder_two)); let winnings_three = borrow_global(signer::address_of(bidder_three)); if (winnings_one.amount > 0 && winnings_two.amount > 0 && winnings_three.amount > 0) { - abort FLAG_WINNER + abort BOUNDARY_WINNER }; i = i + 1;